:root {
  --ink: #17283a;
  --muted: #657386;
  --line: #dce5ee;
  --paper: #f4f8fb;
  --white: #ffffff;
  --blue: #0069b4;
  --deep: #073c66;
  --aqua: #12a3b8;
  --green: #8fc93a;
  --shadow: 0 18px 46px rgba(16, 42, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui,
    sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(22px, 5vw, 72px);
  background: rgba(247, 251, 253, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 196px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  color: #1f3145;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(90px, 11vw, 140px) clamp(22px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 28, 55, 0.92), rgba(5, 48, 87, 0.7) 45%, rgba(5, 48, 87, 0.2)),
    linear-gradient(180deg, rgba(3, 28, 55, 0.18), rgba(3, 28, 55, 0.72)),
    url("./assets/hero-gpu-server.jpg") center / cover;
  transform: scale(1.04);
  animation: heroImageDrift 22s ease-in-out infinite alternate;
}

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

.hero::before {
  z-index: 1;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.06), #000 28%, #000 72%, rgba(0, 0, 0, 0.08));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.06), #000 28%, #000 72%, rgba(0, 0, 0, 0.08));
  animation: heroGridFlow 18s linear infinite;
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(37, 175, 210, 0.18) 48%, rgba(255, 255, 255, 0.16) 50%, rgba(37, 175, 210, 0.12) 52%, transparent 62%, transparent 100%);
  transform: translateX(-72%);
  animation: heroScan 9s ease-in-out infinite;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

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

@keyframes heroImageDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(-18px, -10px, 0);
  }
}

@keyframes heroGridFlow {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes heroScan {
  0%,
  30% {
    transform: translateX(-72%);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  70%,
  100% {
    transform: translateX(72%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero::before,
  .hero::after {
    animation: none;
  }
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.08;
}

.hero-content p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.6vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  padding: 28px;
  background: rgba(5, 39, 72, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-panel > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.35;
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 72px);
}

.page-hero {
  padding: clamp(86px, 10vw, 140px) clamp(22px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 28, 55, 0.94), rgba(4, 68, 112, 0.74)),
    url("./assets/hero-gpu-server.jpg") center / cover;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(3, 28, 55, 0.94), rgba(4, 68, 112, 0.68)),
    url("./assets/hero-ai-compute.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(3, 28, 55, 0.94), rgba(4, 68, 112, 0.68)),
    url("./assets/hero-storage.jpg") center / cover;
}

.section-heading {
  display: block;
  margin-bottom: 42px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.product-subheading {
  margin-bottom: 28px;
}

.section-heading h2,
.company-intro h2,
.gpu-copy h2,
.solution-band h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
}

.topics {
  padding-top: clamp(56px, 6vw, 84px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--white);
}

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

.topics .eyebrow,
.faq .eyebrow {
  font-size: 11px;
}

.topics .section-heading h2,
.faq .section-heading h2 {
  font-size: clamp(24px, 2.8vw, 38px);
}

.topics-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.topics-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.topics-list time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.topics-list p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.mission-grid img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mission-grid p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--paper);
  font-weight: 800;
}

.home-links {
  background: var(--paper);
}

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

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

.home-link-grid a {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-link-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-weight: 900;
}

.home-link-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.home-link-grid p {
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-list article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
}

.faq-list h3 {
  margin-bottom: 10px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.35;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: transparent;
  border: 0;
}

.service-grid article {
  min-height: 300px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid h3 {
  font-size: 22px;
  line-height: 1.35;
}

.service-grid p {
  color: var(--muted);
}

.process-section {
  background: var(--white);
}

.process-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article,
.product-grid article {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
}

.process-grid h3,
.product-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.process-grid p,
.product-grid p {
  color: var(--muted);
}

.solutions {
  background: linear-gradient(180deg, var(--white), #f7fbfe);
}

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

.solution-grid article {
  min-height: 300px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(16, 42, 74, 0.08);
}

.solution-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.35;
}

.solution-grid p {
  color: var(--muted);
}

.cloud-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 35, 67, 0.96), rgba(4, 76, 120, 0.84)),
    url("./assets/hero-gpu-server.jpg") center / cover;
}

.cloud-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.22;
}

.cloud-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cloud-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cloud-panel li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--green);
  font-weight: 800;
}

.authorized-distributor {
  padding-top: clamp(34px, 5vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.authorized-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.authorized-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(34px, 4vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 31, 58, 0.98), rgba(0, 105, 180, 0.86)),
    url("./assets/hero-gpu-server.jpg") center / cover;
  box-shadow: var(--shadow);
}

.partnership-visual {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 32px;
  padding: clamp(8px, 2vw, 18px) 0;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: clamp(12px, 2vw, 24px);
}

.inventec-logo-box img {
  width: min(280px, 100%);
}

.octoli-logo-box img {
  width: min(300px, 100%);
}

.partner-connector {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  min-height: 128px;
  color: var(--deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.partner-connector::before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.partner-connector::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 105, 180, 0.18);
}

.partner-connector span {
  position: relative;
  z-index: 1;
  padding: 4px 6px;
  background: var(--white);
}

.authorized-label {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.authorized-card h3 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
}

.authorized-card > p:not(.authorized-label) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.authorized-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 34px 0 0;
}

.authorized-facts div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.authorized-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.authorized-facts dd {
  margin: 7px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.authorized-flow {
  display: grid;
  gap: 12px;
}

.authorized-flow article {
  display: grid;
  gap: 8px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.authorized-flow span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.authorized-flow h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.35;
}

.authorized-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.gpu-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  min-height: 780px;
}

.gpu-visual {
  background:
    linear-gradient(90deg, rgba(2, 33, 63, 0.08), rgba(2, 33, 63, 0.2)),
    url("./assets/hero-ai-compute.jpg") center / cover;
}

.gpu-copy {
  padding: clamp(56px, 6vw, 92px);
  color: var(--white);
  background: var(--deep);
}

.gpu-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.issue-grid {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.issue-grid article {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.issue-grid img {
  width: 132px;
  height: 92px;
  object-fit: cover;
}

.issue-grid article > div {
  display: grid;
  gap: 8px;
}

.issue-grid h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.35;
}

.issue-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.solution-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 92px);
  padding: clamp(70px, 8vw, 110px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.solution-band p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.product-list {
  background: var(--paper);
}

.product-grid article span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.datacenter-products .product-grid article {
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 42, 74, 0.1);
}

.datacenter-products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  background: transparent;
  border: 0;
}

.datacenter-products .product-grid img {
  width: 100%;
  height: 250px;
  padding: 28px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 238, 0.8);
  border-radius: 12px;
}

.datacenter-products .product-grid span,
.datacenter-products .product-grid h3,
.datacenter-products .product-grid p {
  margin-left: 0;
  margin-right: 0;
}

.datacenter-products .product-grid span {
  margin-top: 28px;
  margin-bottom: 22px;
}

.datacenter-products .product-grid p {
  margin-bottom: 0;
}

.company {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.company-intro {
  padding-top: 12px;
}

.company-intro h2::after {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 22px;
  content: "";
  background: var(--blue);
}

.company-intro p {
  margin-top: 24px;
  color: var(--muted);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.company-table th,
.company-table td {
  padding: 22px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.company-table th {
  width: 220px;
  color: var(--muted);
}

.company-table td {
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(62px, 8vw, 96px) clamp(22px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 34, 63, 0.96), rgba(2, 76, 123, 0.7)),
    url("./assets/hero-storage.jpg") center / cover;
}

.contact p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}

.contact-page h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
}

.contact-page p:not(.eyebrow) {
  color: var(--muted);
}

.contact-info {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
}

.contact-info div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info dt {
  color: var(--muted);
  font-weight: 900;
}

.contact-info dd {
  margin: 0;
  font-weight: 900;
}

.contact-info a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px auto;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #061f38;
}

.site-footer img {
  width: 190px;
}

.site-footer small {
  margin: 0;
}

.sitemap-footer {
  grid-template-columns: minmax(280px, 1.3fr) minmax(160px, 0.55fr) minmax(220px, 0.8fr);
  align-items: start;
  padding-top: clamp(46px, 6vw, 70px);
  padding-bottom: 24px;
}

.sitemap-footer small {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer-about img {
  width: 210px;
  margin-bottom: 24px;
}

.footer-about p {
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 1050px) {
  .hero,
  .mission-grid,
  .gpu-section,
  .solution-band,
  .company,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .solution-grid,
  .cloud-panel,
  .authorized-layout,
  .process-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .authorized-facts {
    grid-template-columns: 1fr;
  }

  .partnership-visual {
    grid-template-columns: 1fr;
  }

  .partner-connector {
    width: 100%;
    min-height: 54px;
  }

  .partner-connector::before {
    width: 2px;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .section-heading,
  .service-grid,
  .solution-grid,
  .home-link-grid,
  .process-grid,
  .product-grid,
  .issue-grid article,
  .sitemap-footer,
  .site-footer {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .gpu-copy {
    padding: 48px 24px;
  }

  .topics-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
