:root {
  --bg: #f4f7fb;
  --paper: #ffffff;
  --ink: #121a26;
  --muted: #667386;
  --line: #dfe6ef;
  --accent: #0d6fb8;
  --accent-strong: #083f78;
  --accent-hot: #d7193f;
  --steel: #172336;
  --warm: #d7193f;
  --blue-soft: #eaf3fb;
  --shadow: 0 22px 60px rgba(20, 37, 63, 0.12);
  --shadow-soft: 0 14px 36px rgba(20, 37, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0, var(--bg) 520px),
    var(--bg);
  font-family: Arial, "Noto Sans", "Noto Sans SC", "Noto Sans JP", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 230, 239, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--accent-hot), #ef5470 40%, var(--accent) 100%);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(13, 111, 184, 0.22);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--blue-soft);
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.lang-switch button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button.active {
  color: #ffffff;
  background: var(--steel);
}

.hero {
  min-height: clamp(620px, calc(100vh - 92px), 760px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(13, 111, 184, 0.32), transparent 34%),
    linear-gradient(90deg, #09111f 0%, #10233f 47.5%, #eef3f7 47.7%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0 48%, transparent 82%);
}

.hero-media {
  min-height: 560px;
  position: relative;
  align-self: center;
  margin: clamp(34px, 5vw, 72px) 0 clamp(34px, 5vw, 72px) clamp(24px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(2, 8, 22, 0.42);
  background:
    linear-gradient(180deg, rgba(8, 16, 30, 0.05), rgba(8, 16, 30, 0.46)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1500&q=86") center / cover;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media::before {
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(13, 111, 184, 0.26) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 111, 184, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-media::after {
  right: 34px;
  bottom: 34px;
  width: min(52%, 360px);
  height: 118px;
  border-left: 4px solid var(--accent-hot);
  background: rgba(8, 16, 30, 0.76);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  color: var(--ink);
}

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #475569;
  font-size: 19px;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: #ffffff;
  background: var(--accent-hot);
  box-shadow: 0 13px 28px rgba(215, 25, 63, 0.24);
}

.btn.primary:hover {
  background: #b81232;
}

.btn.secondary {
  color: var(--accent-strong);
  border-color: rgba(13, 111, 184, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(13, 111, 184, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(13, 111, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-panel div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-panel span {
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  color: var(--steel);
  font-size: 14px;
}

.metrics {
  width: min(1180px, calc(100% - 32px));
  margin: -46px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.metrics div {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--accent-strong);
  font-size: 25px;
  line-height: 1.1;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
}

p {
  margin: 0;
}

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

.product-card,
.case-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card {
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 4px;
  background: var(--accent-hot);
}

.product-card.image-failed::before {
  content: "Image unavailable";
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.08), rgba(38, 55, 66, 0.08)),
    #eef2ef;
  font-size: 13px;
  font-weight: 800;
}

.product-card div {
  padding: 22px;
}

.chip-card {
  transform: translateY(0);
}

.board-card {
  transform: translateY(22px);
}

.factory-card {
  transform: translateY(44px);
}

.product-card p,
.case-grid p,
.split p,
.downloads p,
.about-card p,
.contact-card p,
.about-points p {
  color: var(--muted);
}

.product-card h3,
.case-grid h3 {
  margin-bottom: 10px;
}

.models-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.models-head > p {
  color: var(--muted);
}

.models {
  position: relative;
}

.models::before {
  content: "";
  position: absolute;
  inset: 48px -32px auto;
  height: 65%;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 111, 184, 0.08), rgba(215, 25, 63, 0.05)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(223, 230, 239, 0.74);
}

.model-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.model-search {
  width: min(100%, 520px);
  display: grid;
  gap: 8px;
}

.model-search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.model-search input {
  min-height: 44px;
}

.model-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.model-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 111, 184, 0.36);
  box-shadow: 0 22px 46px rgba(20, 37, 63, 0.14);
}

.model-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--accent-strong);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.model-card h3 {
  font-size: 18px;
  word-break: break-word;
}

.model-card p,
.model-card small {
  color: var(--muted);
}

.model-card small {
  display: block;
  min-height: 38px;
}

.model-card button {
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(215, 25, 63, 0.3);
  border-radius: 7px;
  color: var(--accent-hot);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.model-card button:hover {
  color: #ffffff;
  background: var(--accent-hot);
}

.model-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper);
}

.model-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.model-more p {
  color: var(--muted);
}

.btn.outline {
  color: var(--accent-hot);
  border-color: rgba(215, 25, 63, 0.4);
  background: #ffffff;
}

.btn.outline:hover {
  color: #ffffff;
  background: var(--accent-hot);
}

.directory-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 72px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(100deg, rgba(8, 18, 34, 0.92), rgba(8, 18, 34, 0.7)),
    url("https://images.unsplash.com/photo-1555664424-778a1e5e1b48?auto=format&fit=crop&w=1500&q=84") center / cover;
  box-shadow: var(--shadow);
}

.directory-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.directory-hero p:last-child {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.directory-models {
  padding-top: 40px;
}

.split,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.54fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.split,
.contact {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
}

.split > div:first-child p:last-child {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
}

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

.solution-list div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.solution-list span {
  color: var(--accent-hot);
  font-weight: 900;
}

.case-grid article {
  min-height: 190px;
  padding: 24px;
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.case-grid article::before {
  content: "";
  width: 36px;
  height: 4px;
  display: block;
  margin-bottom: 28px;
  background: var(--accent);
}

.downloads {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: center;
  padding: 60px;
  margin-top: 92px;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(8, 18, 34, 0.94), rgba(13, 111, 184, 0.62)),
    url("https://images.unsplash.com/photo-1562408590-e32931084e23?auto=format&fit=crop&w=1400&q=82") center / cover;
  box-shadow: var(--shadow);
}

.downloads h2 {
  margin-bottom: 14px;
}

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

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

.download-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.download-list a::after {
  content: "PDF";
  flex: 0 0 auto;
  color: var(--accent-hot);
  font-size: 12px;
}

.about-card {
  padding: 32px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 18, 34, 0.96), rgba(8, 63, 120, 0.9)),
    var(--steel);
  box-shadow: var(--shadow);
}

.about-card .eyebrow {
  color: #ff8da1;
}

.about-card p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-visual {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 111, 184, 0.12), rgba(215, 25, 63, 0.06)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  background:
    linear-gradient(90deg, rgba(13, 111, 184, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 111, 184, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
}

.about-visual span {
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(13, 111, 184, 0.24);
  background:
    linear-gradient(135deg, #172336, #0d6fb8);
  box-shadow: 0 24px 54px rgba(13, 111, 184, 0.24);
}

.about-visual strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 64px;
  letter-spacing: 0;
}

.about-points p {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

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

.inquiry-form .wide,
.inquiry-form .form-note {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfcfb;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(13, 111, 184, 0.2);
  border-color: var(--accent);
  background: #ffffff;
}

.inquiry-form button {
  width: fit-content;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding-bottom: 92px;
}

.contact-card {
  padding: 26px;
}

.contact-card p + p {
  margin-top: 10px;
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

footer {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 max(16px, calc((100% - 1180px) / 2));
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--accent-strong);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, #09111f 0%, #10233f 48%, #ffffff 48.2%, #ffffff 100%);
  }

  .hero-media {
    min-height: 340px;
    order: 2;
    margin: 0 24px 34px;
  }

  .hero-content {
    padding: 42px 24px 40px;
    color: #ffffff;
  }

  .hero-lead {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero h1 {
    font-size: clamp(38px, 8vw, 58px);
  }

  h2,
  .directory-hero h1 {
    font-size: clamp(30px, 6vw, 42px);
  }

  .btn.secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-panel div {
    background: rgba(255, 255, 255, 0.92);
  }

  .metrics,
  .product-grid,
  .case-grid,
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .directory-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split,
  .downloads,
  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .downloads {
    padding: 40px 28px;
  }

  .chip-card,
  .board-card,
  .factory-card {
    transform: none;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  .header-inner,
  .section,
  .metrics {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .main-nav {
    gap: 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 7px 8px;
    font-size: 13px;
  }

  .hero-media {
    min-height: 170px;
    margin: 0 12px 28px;
  }

  .hero,
  .hero-content,
  .hero-media {
    min-width: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  h2,
  .directory-hero h1 {
    font-size: 30px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-content {
    padding: 32px 24px 46px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .hero-panel div {
    min-height: 74px;
  }

  .hero-media::before {
    inset: 18px;
    background-size: 30px 30px;
  }

  .hero-media::after {
    right: 18px;
    bottom: 18px;
    height: 76px;
  }

  .metrics,
  .product-grid,
  .case-grid,
  .model-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .product-card,
  .case-grid article,
  .model-card,
  .contact-card,
  .about-card,
  .about-visual,
  .inquiry-form,
  .download-list a {
    min-width: 0;
  }

  .model-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .model-search {
    width: 100%;
  }

  .model-more {
    align-items: stretch;
    flex-direction: column;
  }

  .model-more .btn {
    width: 100%;
  }

  .directory-hero {
    width: min(100% - 24px, 1180px);
    padding: 42px 22px;
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding-top: 68px;
  }

  .downloads {
    margin-top: 68px;
    padding: 32px 20px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .inquiry-form button {
    width: 100%;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 12px;
  }
}

/* Visual refresh v2: enterprise semiconductor landing page */
body {
  background:
    linear-gradient(180deg, #ffffff 0, #f5f8fc 34%, #eef3f8 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
}

.hero {
  min-height: clamp(660px, calc(100vh - 72px), 820px);
  display: block;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(6, 14, 27, 0.9), rgba(6, 14, 27, 0.55) 48%, rgba(6, 14, 27, 0.18)),
    url("https://images.unsplash.com/photo-1562408590-e32931084e23?auto=format&fit=crop&w=1800&q=86") center / cover;
}

.hero::before {
  z-index: -1;
  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: 92px 92px;
  mask-image: linear-gradient(180deg, #000 0 80%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 18, 34, 0.86), transparent);
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: 92px 0 78px;
  color: #ffffff;
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 14px;
  border-left: 4px solid var(--accent-hot);
  color: #ffffff;
  background: rgba(215, 25, 63, 0.82);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.96;
}

.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-panel {
  width: min(100%, 780px);
  margin-top: 54px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-panel div {
  min-height: 104px;
  background: rgba(7, 20, 39, 0.72);
}

.hero-panel strong {
  color: #ffffff;
}

.hero-signal {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 82px;
  width: min(34vw, 390px);
  display: grid;
  gap: 12px;
}

.hero-signal span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 18, 34, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.hero-signal span:nth-child(2) {
  margin-left: 48px;
}

.hero-signal span:nth-child(3) {
  margin-left: 96px;
  border-left: 5px solid var(--accent-hot);
}

.metrics {
  margin-top: -38px;
  border-radius: 0;
  transform: none;
}

#products {
  padding-top: 36px;
}

.section-head {
  max-width: 920px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-feature-media {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.18), rgba(8, 18, 34, 0.62)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=86") center / cover;
}

.product-feature-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 44px;
  background:
    linear-gradient(135deg, #ffffff, #f1f6fb);
}

.product-feature-copy span {
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 900;
}

.product-feature-copy strong {
  color: var(--steel);
  font-size: 28px;
  line-height: 1.22;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-top: 0;
  background: #ffffff;
}

.product-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.product-card:last-child {
  border-right: 0;
}

.product-card img {
  aspect-ratio: 16 / 8.6;
}

.chip-card,
.board-card,
.factory-card {
  transform: none;
}

.models {
  width: 100%;
  padding: 104px max(24px, calc((100% - 1180px) / 2));
  margin-top: 96px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 18, 34, 0.95), rgba(8, 63, 120, 0.82)),
    url("https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.models::before {
  display: none;
}

.models .section-head {
  margin: 0 0 34px;
}

.models h2,
.models-head > p,
.model-search span,
.model-count,
.model-more p {
  color: rgba(255, 255, 255, 0.84);
}

.models h2 {
  color: #ffffff;
}

.model-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.model-band span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.model-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.model-more {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 18, 34, 0.72);
}

.split {
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.solution-media {
  min-height: 380px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.08), rgba(8, 18, 34, 0.5)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=900&q=82") center / cover;
  box-shadow: var(--shadow-soft);
}

.solution-list {
  position: relative;
  gap: 0;
  border-top: 1px solid var(--line);
}

.solution-list div {
  min-height: 96px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.case-grid {
  gap: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.case-grid article {
  min-height: 360px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

.case-grid article:last-child {
  border-right: 0;
}

.case-grid article::before {
  display: none;
}

.case-image {
  height: 170px;
  display: block;
  margin: -24px -24px 24px;
  background-size: cover;
  background-position: center;
}

.case-ems {
  background-image:
    linear-gradient(180deg, transparent, rgba(8, 18, 34, 0.25)),
    url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=900&q=82");
}

.case-japan {
  background-image:
    linear-gradient(180deg, transparent, rgba(8, 18, 34, 0.25)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=82");
}

.case-maintenance {
  background-image:
    linear-gradient(180deg, transparent, rgba(8, 18, 34, 0.25)),
    url("https://images.unsplash.com/photo-1581092162384-8987c1d64718?auto=format&fit=crop&w=900&q=82");
}

.downloads {
  border-radius: 0;
}

.about {
  align-items: stretch;
}

.about-card,
.about-visual,
.about-points p,
.inquiry-form,
.contact-card {
  border-radius: 0;
}

.portal-section {
  padding-top: 54px;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.portal-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.portal-card:last-child {
  border-right: 0;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.12), rgba(8, 18, 34, 0.88));
}

.portal-card > * {
  position: relative;
}

.portal-card span {
  color: #ff8da1;
  font-size: 12px;
  font-weight: 900;
}

.portal-card strong {
  font-size: 26px;
  line-height: 1.18;
}

.portal-card p {
  color: rgba(255, 255, 255, 0.78);
}

.portal-products {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1000&q=84");
}

.portal-models {
  background-image: url("https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?auto=format&fit=crop&w=1000&q=84");
}

.portal-support {
  background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1000&q=84");
}

.products-hero {
  background:
    linear-gradient(100deg, rgba(8, 18, 34, 0.92), rgba(8, 18, 34, 0.56)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=84") center / cover;
}

.support-hero {
  background:
    linear-gradient(100deg, rgba(8, 18, 34, 0.92), rgba(8, 18, 34, 0.58)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1600&q=84") center / cover;
}

.support-workflow {
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr) minmax(320px, 0.95fr);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.assurance-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.assurance-grid article:last-child {
  border-right: 0;
}

.assurance-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 900;
}

.assurance-grid h3 {
  margin-bottom: 12px;
}

.assurance-grid p,
.payment p,
.payment-grid span {
  color: var(--muted);
}

.payment {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.payment > div:first-child p {
  margin-top: 18px;
  font-size: 18px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.payment-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-grid article:nth-child(2n) {
  border-right: 0;
}

.payment-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.payment-grid strong {
  color: var(--accent-strong);
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(6, 14, 27, 0.92), rgba(6, 14, 27, 0.72)),
      url("https://images.unsplash.com/photo-1562408590-e32931084e23?auto=format&fit=crop&w=1200&q=84") center / cover;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 72px 0 56px;
  }

  .hero-signal {
    display: none;
  }

  .product-feature,
  .split,
  .support-workflow,
  .payment {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .case-grid,
  .portal-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .case-grid article,
  .portal-card,
  .assurance-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card:last-child,
  .case-grid article:last-child,
  .portal-card:last-child,
  .assurance-grid article:last-child {
    border-bottom: 0;
  }

  .models {
    padding: 80px max(20px, calc((100% - 1180px) / 2));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 54px 0 46px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .hero-panel div {
    min-height: 84px;
  }

  .product-feature-copy {
    padding: 28px;
  }

  .product-feature-copy strong {
    font-size: 22px;
  }

  .portal-card {
    min-height: 240px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid article,
  .payment-grid article:nth-child(2n),
  .payment-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .payment-grid article:last-child {
    border-bottom: 0;
  }

  .models {
    margin-top: 68px;
    padding: 68px 14px;
  }

  .case-image {
    height: 150px;
  }
}
