
:root {
  --bg: #020604;
  --bg-soft: #06100b;
  --panel: #07130d;
  --panel-2: #091811;
  --text: #f3f7f4;
  --muted: #aebbb3;
  --line: rgba(86, 242, 124, .18);
  --line-strong: rgba(86, 242, 124, .42);
  --green: #35f27a;
  --green-bright: #7dffa8;
  --green-deep: #00b957;
  --glow: rgba(53, 242, 122, .30);
  --max: 1380px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 4%, rgba(0, 185, 87, .08), transparent 31rem),
    linear-gradient(180deg, #010403 0%, var(--bg) 42%, #031008 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--green); color: #001708; }

.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 4, 3, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(53, 242, 122, .10);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { flex: 0 0 248px; }
.brand img { width: 230px; max-height: 56px; object-fit: contain; object-position: left center; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  flex: 1;
}
.nav a {
  padding: 31px 0 27px;
  color: #d8e0db;
  font-size: .76rem;
  letter-spacing: .045em;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--green-bright); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--glow);
}
.header-cta {
  padding: 12px 20px;
  border: 1px solid var(--green-deep);
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-cta:hover { background: var(--green); color: #00190a; box-shadow: 0 0 28px var(--glow); }
.menu-toggle { display: none; }

.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section-tight { padding: 58px 0; }
.section-line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green-bright);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--green); }

h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 5.1vw, 5.4rem); }
h2 { font-size: clamp(2.25rem, 3.4vw, 3.8rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
.accent { color: var(--green); text-shadow: 0 0 24px rgba(53, 242, 122, .12); }
.lead { font-size: clamp(1rem, 1.25vw, 1.16rem); color: var(--muted); max-width: 640px; }
.small { color: var(--muted); font-size: .88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border-radius: 7px;
  border: 1px solid var(--green-deep);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: .22s ease;
}
.btn.primary { background: var(--green); border-color: var(--green); color: #001b0b; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px var(--glow); }

.hero { min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 4; padding: 44px 0; }
.hero-copy h1 {
  margin-top: 22px;
  max-width: 650px;
  font-size: clamp(3.6rem, 4.45vw, 4.85rem);
  line-height: .99;
}
.hero-copy .lead { margin-top: 24px; }
.hero-art {
  position: relative;
  min-width: 0;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(53,242,122,.14), transparent 64%);
  filter: blur(36px);
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(53,242,122,.10));
}
.location-note {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c5d0c9;
  font-size: .86rem;
}
.location-dot {
  width: 10px; height: 10px; border-radius: 999px;
  margin-top: 7px; background: var(--green);
  box-shadow: 0 0 16px var(--green);
  flex: 0 0 auto;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.value { padding: 24px 24px 16px; min-height: 126px; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.value strong { display: block; color: var(--green); font-size: .76rem; margin-bottom: 10px; letter-spacing: .06em; }
.value p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

.page-hero {
  padding: 85px 0 72px;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(525px, .96fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
}
.page-hero-copy h1 {
  margin-top: 22px;
  max-width: 660px;
  font-size: clamp(3.25rem, 4.25vw, 4.6rem);
  line-height: .99;
}
.page-hero-copy .lead { margin-top: 24px; }
.page-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}
.page-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(53,242,122,.13), transparent 65%);
  filter: blur(42px);
}
.page-visual img {
  width: 108%;
  max-width: none;
  max-height: 570px;
  object-fit: contain;
  position: relative;
  border-radius: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 28px rgba(53,242,122,.08));
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  color: var(--green-bright);
  background: rgba(53,242,122,.07);
  border: 1px solid rgba(53,242,122,.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
}

.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards.five { grid-template-columns: repeat(5, 1fr); }
.card {
  background:
    linear-gradient(180deg, rgba(53,242,122,.035), rgba(53,242,122,0)),
    var(--panel);
  border: 1px solid rgba(53,242,122,.17);
  border-radius: 13px;
  padding: 26px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  right: -55px; bottom: -55px;
  border: 1px solid rgba(53,242,122,.12);
  border-radius: 50%;
}
.card-label { color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .06em; margin-bottom: 19px; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--muted); font-size: .9rem; margin: 0; }
.icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--green-bright);
  border: 1px solid var(--line-strong);
  background: rgba(53,242,122,.06);
  margin-bottom: 20px;
  font-size: 1.35rem;
  box-shadow: inset 0 0 20px rgba(53,242,122,.04);
}

.split-title { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 35px; }
.split-title p { margin: 0; color: var(--muted); }

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%; top: 27px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: .62;
}
.process-step { position: relative; padding-top: 60px; }
.process-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: #04140a; border: 2px solid var(--green);
  display: grid; place-items: center;
  color: var(--green-bright); font-size: .72rem; font-weight: 800;
  position: absolute; top: 11px; left: 17px;
  box-shadow: 0 0 20px var(--glow);
}
.process-step .card { min-height: 260px; }

.diagram {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.diagram-core {
  width: 112px; height: 112px; border-radius: 24px;
  display: grid; place-items: center;
  background: #07140d; border: 1px solid var(--green);
  box-shadow: 0 0 40px var(--glow), inset 0 0 26px rgba(53,242,122,.08);
  color: var(--green-bright); font-weight: 850; font-size: 1.35rem;
}
.orbit {
  position: absolute; border: 1px solid rgba(53,242,122,.34); border-radius: 50%;
}
.orbit.o1 { width: 220px; height: 220px; }
.orbit.o2 { width: 330px; height: 330px; }
.orbit.o3 { width: 430px; height: 430px; }
.orbit-node {
  position: absolute; width: 82px; height: 42px;
  display: grid; place-items: center;
  background: #06120b; border: 1px solid rgba(53,242,122,.46);
  border-radius: 8px; color: var(--green-bright);
  font-size: .67rem; font-weight: 800; letter-spacing: .05em;
}
.orbit-node.top { top: 17px; left: 50%; transform: translateX(-50%); }
.orbit-node.right { right: 1px; top: 50%; transform: translateY(-50%); }
.orbit-node.bottom { bottom: 17px; left: 50%; transform: translateX(-50%); }
.orbit-node.left { left: 1px; top: 50%; transform: translateY(-50%); }

.infographic {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(53,242,122,.16);
  background: #010403;
}
.infographic img { width: 100%; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article {
  border: 1px solid rgba(53,242,122,.17);
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
}
.article-visual {
  height: 110px;
  background:
    radial-gradient(circle at 70% 40%, rgba(53,242,122,.25), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 45px, rgba(53,242,122,.08) 46px),
    linear-gradient(135deg, #071a10, #031008);
  position: relative;
}
.article-visual::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 52%;
  height: 1px; background: var(--green);
  box-shadow: 0 0 16px var(--glow);
}
.article-visual::after {
  content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  left: 20%; top: calc(52% - 4px); background: var(--green);
  box-shadow: 108px 0 0 var(--green), 216px 0 0 var(--green), 324px 0 0 var(--green);
}
.article-body { padding: 25px; }
.article-body .card-label { margin-bottom: 13px; }
.article-body h3 { min-height: 52px; }
.article-body p { color: var(--muted); font-size: .87rem; }

.featured {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 1px solid rgba(53,242,122,.18);
  border-radius: 15px;
  overflow: hidden;
  background: var(--panel);
}
.featured-visual {
  min-height: 350px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle, rgba(53,242,122,.18), transparent 43%),
    #06130c;
}
.radar {
  width: 250px; height: 250px; border-radius: 50%;
  position: relative; border: 1px solid rgba(53,242,122,.68);
  box-shadow: 0 0 30px rgba(53,242,122,.10);
}
.radar::before, .radar::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(53,242,122,.44);
}
.radar::before { inset: 35px; }
.radar::after { inset: 74px; }
.radar-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(53,242,122,.35); }
.radar-line.two { transform: rotate(60deg); }
.radar-line.three { transform: rotate(120deg); }
.radar-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.featured-copy { padding: 42px; align-self: center; }
.featured-copy h2 { font-size: clamp(2rem, 3vw, 3.2rem); margin: 18px 0; }

.partner-hero {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center;
}
.network {
  min-height: 460px; position: relative; display: grid; place-items: center;
}
.network-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(53,242,122,.35); }
.network-ring.r1 { width: 180px; height: 180px; }
.network-ring.r2 { width: 300px; height: 300px; }
.network-ring.r3 { width: 420px; height: 420px; }
.network-core {
  width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%;
  background: #06140b; border: 1px solid var(--green); color: var(--green-bright);
  font-weight: 900; box-shadow: 0 0 28px var(--glow);
}
.network-node {
  position: absolute; min-width: 98px; height: 40px; padding: 0 12px;
  display: grid; place-items: center;
  border-radius: 999px; background: #06120b; border: 1px solid var(--line-strong);
  color: #dce6df; font-size: .68rem; font-weight: 760;
}
.network-node.n1 { top: 9px; left: 50%; transform: translateX(-50%); }
.network-node.n2 { right: 5px; top: 26%; }
.network-node.n3 { right: 15px; bottom: 24%; }
.network-node.n4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.network-node.n5 { left: 15px; bottom: 24%; }
.network-node.n6 { left: 5px; top: 26%; }

.form-panel {
  border: 1px solid rgba(53,242,122,.22);
  background: var(--panel);
  border-radius: 14px;
  padding: 30px;
}
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .72rem; color: var(--green-bright); letter-spacing: .06em; }
.field input, .field select, .field textarea {
  width: 100%; color: var(--text); background: #020906;
  border: 1px solid rgba(53,242,122,.20); border-radius: 7px;
  padding: 13px 14px; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(53,242,122,.07); }
.field textarea { min-height: 118px; resize: vertical; }

.site-footer {
  border-top: 1px solid rgba(53,242,122,.16);
  background: #010403;
  padding: 52px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .75fr 1fr; gap: 40px; }
.footer-logo { width: 230px; margin-bottom: 18px; }
.footer-title { color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .08em; margin-bottom: 14px; }
.footer-links { display: grid; gap: 8px; color: var(--muted); font-size: .86rem; }
.footer-links a:hover { color: var(--green-bright); }
.footer-bottom {
  margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 24px; color: #839088; font-size: .75rem;
}

.legal { max-width: 850px; }
.legal h1 { font-size: 3.1rem; margin: 25px 0; }
.legal h2 { font-size: 1.55rem; margin: 40px 0 15px; }
.legal p, .legal li { color: var(--muted); }

@media (max-width: 1100px) {
  .brand { flex-basis: 210px; }
  .brand img { width: 200px; }
  .nav { gap: 18px; }
  .nav a { font-size: .69rem; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 900px; margin: 0 auto; }
  .hero { min-height: auto; padding: 42px 0 30px; }
  .page-visual { order: -1; min-height: 340px; }
  .cards.five { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before { display: none; }
  .featured, .partner-hero { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  :root { --header-h: 76px; }
  .header-inner { width: min(100% - 26px, var(--max)); }
  .brand { flex: 1; }
  .brand img { width: 190px; }
  .menu-toggle {
    display: grid; place-items: center; width: 42px; height: 42px;
    background: transparent; color: var(--text);
    border: 1px solid var(--line-strong); border-radius: 8px;
  }
  .nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    display: none; background: #010503; padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
  }
  .nav.open { display: grid; }
  .nav a { padding: 10px 0; }
  .nav a.active::after { bottom: 3px; }
  .header-cta { display: none; }
  .shell { width: min(100% - 28px, var(--max)); }
  .values { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2) { border-right: 0; }
  .cards.three, .cards.four, .cards.five, .article-grid { grid-template-columns: 1fr 1fr; }
  .split-title { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  h1 { font-size: 3rem; }
  .hero-grid { gap: 10px; }
  .hero-copy { padding-top: 10px; }
  .page-hero { padding-top: 35px; }
  .values, .cards.three, .cards.four, .cards.five, .article-grid, .process { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); }
  .page-visual, .diagram, .network { min-height: 310px; transform: scale(.88); margin: -20px 0; }
  .featured-copy { padding: 27px; }
  .featured-visual { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media(max-width:900px){.section .shell>div[style*='grid-template-columns:1.1fr']{grid-template-columns:1fr!important}.section .shell>div[style*='grid-template-columns:1.1fr']>.cards{grid-template-columns:1fr 1fr!important}}@media(max-width:580px){.section .shell>div[style*='grid-template-columns:1.1fr']>.cards{grid-template-columns:1fr!important}}

@media (min-width:1101px) {
  .hero-copy, .page-hero-copy { align-self: center; }
  .page-hero { min-height: 680px; display: grid; align-items: center; }
  .page-hero-grid { min-height: 560px; }
}
@media (max-width:1250px) and (min-width:1101px) {
  .hero-grid { grid-template-columns: minmax(470px,.9fr) minmax(0,1.1fr); }
  .page-hero-grid { grid-template-columns: minmax(470px,.92fr) minmax(0,1.08fr); }
  .hero-copy h1 { font-size: 4rem; }
  .page-hero-copy h1 { font-size: 3.85rem; }
}


/* V7.2 — Home hero balance correction only */
@media (min-width: 1101px) {
  .home-page .hero {
    min-height: calc(100svh - var(--header-h));
    padding-top: 0;
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(645px, .98fr) minmax(0, 1.02fr);
    gap: 22px;
    align-items: start;
  }

  .home-page .hero-copy {
    padding: 42px 0 18px;
  }

  .home-page .hero-copy h1 {
    width: 645px;
    max-width: 645px;
    font-size: clamp(3.35rem, 3.85vw, 3.9rem);
    line-height: .98;
    letter-spacing: -.045em;
  }

  .home-page .hero-copy .lead {
    max-width: 590px;
    margin-top: 22px;
  }

  .home-page .hero-art {
    align-self: start;
    margin-top: 125px;
    overflow: visible;
  }

  .home-page .hero-art img {
    width: 116%;
    max-width: none;
    max-height: 590px;
    transform: translateX(-5%);
  }

  .home-page .values {
    margin-top: 14px;
  }
}

@media (max-width: 1250px) and (min-width: 1101px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(565px, .94fr) minmax(0, 1.06fr);
  }

  .home-page .hero-copy h1 {
    width: 565px;
    max-width: 565px;
    font-size: 3.35rem;
  }

  .home-page .hero-art {
    margin-top: 118px;
  }

  .home-page .hero-art img {
    width: 112%;
    transform: translateX(-3%);
  }
}


/* V7.3 — Natural fade for Home hero artwork */
.home-page .hero-art {
  isolation: isolate;
}

.home-page .hero-art img {
  -webkit-mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,.55) 4%,
      #000 11%,
      #000 89%,
      rgba(0,0,0,.55) 96%,
      transparent 100%),
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,0,0,.70) 5%,
      #000 12%,
      #000 88%,
      rgba(0,0,0,.70) 95%,
      transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,.55) 4%,
      #000 11%,
      #000 89%,
      rgba(0,0,0,.55) 96%,
      transparent 100%),
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,0,0,.70) 5%,
      #000 12%,
      #000 88%,
      rgba(0,0,0,.70) 95%,
      transparent 100%);
  mask-composite: intersect;
}

.home-page .hero-art::after {
  content: "";
  position: absolute;
  inset: 1% 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(to right,
      var(--bg) 0%,
      transparent 10%,
      transparent 90%,
      var(--bg) 100%),
    linear-gradient(to bottom,
      var(--bg) 0%,
      transparent 10%,
      transparent 90%,
      var(--bg) 100%);
  opacity: .42;
}


/* V7.4 — True four-layer image fade is now embedded in the PNG */
.home-page .hero-art img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.home-page .hero-art::after {
  display: none !important;
}

/* V7.5 — Technology page: research visual without a product device */
.technology-visual {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 2px;
  isolation: isolate;
}
.technology-visual::after {
  content: "";
  position: absolute;
  inset: 14% 8% 12% 0;
  background:
    radial-gradient(circle at 54% 48%, rgba(53,242,122,.12), transparent 38%),
    linear-gradient(90deg, transparent, rgba(53,242,122,.025), transparent);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.technology-motion-art {
  min-width: 0;
  display: grid;
  place-items: center;
  position: relative;
}
.page-visual .technology-motion-art img {
  width: min(109%, 785px);
  height: auto;
  max-height: 565px;
  object-fit: contain;
  object-position: center;
  transform: translateX(-5%);
  transform-origin: center center;
  filter: drop-shadow(0 0 18px rgba(53,242,122,.14));
  opacity: .90;
}
.technology-focus-list {
  display: grid;
  gap: 18px;
  align-content: center;
  position: relative;
  z-index: 2;
}
.technology-focus-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  color: #d8e1db;
}
.technology-focus-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(53,242,122,.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-bright);
  font-size: 1rem;
  line-height: 1;
  background: rgba(53,242,122,.035);
  box-shadow: inset 0 0 18px rgba(53,242,122,.025);
}
.technology-focus-item strong,
.technology-focus-item span:not(.technology-focus-icon) {
  display: block;
}
.technology-focus-item strong {
  font-size: .68rem;
  line-height: 1.3;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: #dbe5de;
}
.technology-focus-item div > span {
  margin-top: 2px;
  color: var(--green);
  font-size: .62rem;
  line-height: 1.25;
  letter-spacing: .09em;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .technology-visual {
    width: min(100%, 850px);
    margin: 0 auto;
    grid-template-columns: minmax(0,1fr) 210px;
    min-height: 470px;
  }
  .page-visual .technology-motion-art img {
    width: min(108%, 730px);
    max-height: 495px;
    transform: translateX(-4%);
  }
}
@media (max-width: 700px) {
  .technology-visual {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
    transform: none;
    margin: 0;
  }
  .page-visual .technology-motion-art img {
    width: min(100%, 520px);
    max-height: 345px;
    transform: none;
  }
  .technology-focus-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    width: min(100%, 520px);
    margin: -8px auto 12px;
  }
}
@media (max-width: 430px) {
  .page-visual .technology-motion-art img { max-height: 310px; }
  .technology-focus-list { grid-template-columns: 1fr; }
}
