:root {
  --maw-cin-black: #031122;
  --maw-cin-dark: #07192d;
  --maw-cin-navy: #15293f;
  --maw-cin-mid: #2e445f;
  --maw-cin-gray: #4b627e;
  --maw-cin-white: #f1f5fa;
  --maw-cin-cyan: #7ec7ff;
  --maw-navy: #0d1f4d;
  --maw-navy-mid: #162d6b;
  --maw-gold: #c8982a;
  --maw-gold-light: #deb84a;
  --maw-white: #ffffff;
  --maw-off-white: #f7f9fc;
  --maw-text: #172033;
  --maw-text-muted: #5e6b7d;
  --maw-border: #dbe5ef;
  --maw-blue: #1d6ee8;
  --container: 1120px;
  --shadow-card: 0 18px 40px rgba(13, 31, 77, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--maw-text);
  background: var(--maw-white);
  font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,
h2,
h3,
.section-title h2,
.product-section__copy h2,
.why-section__copy h2,
.trust-section__copy h2,
.cta-section__copy h2 {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

p,
li,
.card p,
.domain-card p,
.product-card p,
.product-card strong,
.button,
.outline-link,
.solid-link,
.reason-card p,
.trust-card p,
.footer-description {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.keep-line {
  display: inline-block;
}

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

:focus-visible {
  outline: 3px solid var(--maw-cin-cyan);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: var(--maw-white);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease,
    transform 220ms ease;
}

.site-header[data-scrolled] {
  position: fixed;
  background: rgba(3, 17, 34, 0.78);
  box-shadow: 0 18px 42px rgba(3, 17, 34, 0.18);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  padding: 4px 0;
  color: var(--maw-white);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand--text {
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(255, 224, 142, 0.76);
  border-radius: 7px;
  color: #061525;
  background:
    linear-gradient(135deg, #fff1a8 0%, #deb84a 48%, #a97816 100%);
  box-shadow:
    inset -8px -9px 18px rgba(70, 42, 2, 0.24),
    inset 7px 7px 14px rgba(255, 255, 255, 0.34),
    0 0 18px rgba(222, 184, 74, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7ec7ff, #0b5f9d);
  transform: skewX(-18deg);
  box-shadow: 0 0 10px rgba(126, 199, 255, 0.62);
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
  white-space: nowrap;
}

.brand-word strong {
  color: var(--maw-gold-light);
  font-weight: 900;
}

.brand__logo {
  display: block;
  width: 216px;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(241, 245, 250, 0.44))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand picture,
.brand-picture {
  display: block;
  width: 216px;
  line-height: 0;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.desktop-nav a {
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--maw-cin-cyan);
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(222, 184, 74, 0.85);
  border-radius: 2px;
  color: #ffe196;
  background: rgba(200, 152, 42, 0.16);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-cta:hover {
  background: rgba(200, 152, 42, 0.28);
  box-shadow: 0 10px 26px rgba(200, 152, 42, 0.22);
  transform: translateY(-1px);
}

.mobile-menu {
  display: block;
  position: relative;
  margin-left: auto;
  z-index: 40;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 199, 255, 0.55);
  border-radius: 3px;
  background: rgba(3, 17, 34, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(126, 199, 255, 0.34);
}

.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid rgba(126, 199, 255, 0.25);
  border-radius: 4px;
  background: rgba(3, 17, 34, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mobile-menu nav a {
  padding: 10px 0;
  color: #ffffff;
  font-weight: 800;
}

@media (min-width: 1001px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background: #020c18;
  color: var(--maw-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("../images/home/hp-top-hero.webp") type("image/webp"),
    url("../images/home/hp-top-hero.png") type("image/png")
  );
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(168, 213, 255, 0.50), transparent 22%),
    linear-gradient(90deg, rgba(1, 7, 16, 0.97) 0%, rgba(2, 12, 25, 0.92) 34%, rgba(2, 12, 25, 0.40) 70%, rgba(2, 12, 25, 0.10) 100%),
    linear-gradient(180deg, rgba(2, 12, 25, 0.30), rgba(2, 12, 25, 0.35));
}

.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 199, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 199, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.65;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 64px));
  min-height: 465px;
  margin: 0 auto;
  padding: 144px 0 34px;
}

.hero__accent {
  position: absolute;
  top: 124px;
  right: max(28px, calc((100vw - var(--container)) / 2 + 84px));
  z-index: 1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(126, 199, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 30%, rgba(126, 199, 255, 0.16) 30% 31%, transparent 31%),
    radial-gradient(circle at 50% 50%, rgba(126, 199, 255, 0.12), transparent 55%);
  box-shadow: 0 0 55px rgba(126, 199, 255, 0.18);
  transform: perspective(700px) rotateX(64deg) rotateZ(-18deg);
  animation: heroPulse 5.8s ease-in-out infinite;
}

.hero__accent::before,
.hero__accent::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(126, 199, 255, 0.25);
  border-radius: 50%;
}

.hero__accent::after {
  inset: 72px;
  background: rgba(126, 199, 255, 0.28);
  box-shadow: 0 0 24px rgba(126, 199, 255, 0.45);
}

.hero__copy {
  width: min(470px, 100%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 54px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.03em;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.hero__copy p {
  width: min(460px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 190px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.outline-link:hover,
.solid-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 31, 77, 0.18);
}

.button::after,
.outline-link::after,
.solid-link::after {
  content: "›";
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.button-cyan {
  border: 1px solid rgba(31, 198, 255, 0.92);
  color: #15d6ff;
  background: rgba(0, 72, 112, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--maw-white);
  background: rgba(0, 0, 0, 0.22);
}

.button-gold {
  border: 1px solid rgba(222, 184, 74, 0.85);
  color: var(--maw-white);
  background: linear-gradient(135deg, rgba(168, 126, 25, 0.95), rgba(109, 82, 18, 0.92));
}

.hero__coordinates {
  position: absolute;
  top: 134px;
  left: 50%;
  margin: 0;
  color: rgba(126, 199, 255, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero__data {
  position: absolute;
  top: 184px;
  right: 64px;
  display: grid;
  gap: 8px;
  width: 145px;
  color: rgba(177, 218, 255, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__data span {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(126, 199, 255, 0.55);
}

.hero__label {
  position: absolute;
  right: 16px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.section {
  border-bottom: 1px solid var(--maw-border);
}

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

.section--soft {
  background: linear-gradient(180deg, #f9fbfe 0%, #ffffff 100%);
}

.section-grid {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 70px;
  padding: 26px 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js-ready [data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.section-copy {
  min-width: 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--maw-blue);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2 {
  margin: 0;
  color: #111827;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.section-copy p {
  margin: 14px 0 0;
  color: #334155;
  font-size: 11.5px;
  line-height: 1.82;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.feature-item {
  min-width: 0;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item h3 {
  margin: 10px 0 6px;
  color: #172033;
  font-size: 14px;
  font-weight: 800;
}

.feature-item p {
  margin: 0;
  color: #334155;
  font-size: 11px;
  line-height: 1.68;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.line-icon {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  color: #2e82ff;
  transition:
    color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.feature-item:hover .line-icon {
  color: #0bb2d4;
  filter: drop-shadow(0 0 10px rgba(126, 199, 255, 0.48));
  transform: translateY(-1px);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid currentColor;
}

.icon-search::before {
  border-radius: 50%;
}

.icon-search::after {
  inset: auto 3px 3px auto;
  width: 14px;
  height: 2px;
  border: 0;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-document::before,
.icon-disclosure::before,
.icon-mail::before {
  border-radius: 2px;
}

.icon-document::after,
.icon-disclosure::after {
  inset: 15px 13px auto 13px;
  height: 12px;
  border-width: 2px 0;
}

.icon-learning::before {
  inset: 9px 6px 15px;
  transform: skewY(-20deg);
}

.icon-learning::after {
  inset: auto 18px 8px;
  width: 2px;
  height: 13px;
  border: 0;
  background: currentColor;
}

.icon-growth::before,
.icon-update::before {
  inset: 24px 9px 9px;
  border-width: 0 0 2px 2px;
}

.icon-growth::after,
.icon-update::after {
  inset: 9px 9px auto auto;
  width: 22px;
  height: 22px;
  border-width: 2px 2px 0 0;
}

.icon-team::before {
  border-radius: 50%;
}

.icon-team::after {
  inset: auto 5px 6px;
  height: 14px;
  border-radius: 16px 16px 0 0;
}

.icon-ai::before {
  border-radius: 50%;
}

.icon-ai::after {
  inset: 7px 19px;
  border-width: 0 2px;
}

.icon-shield::before,
.icon-lock::before {
  border-radius: 16px 16px 9px 9px;
}

.icon-shield::after,
.icon-lock::after {
  inset: 16px 19px 10px;
  border-width: 0 2px 0 0;
}

.icon-person::before {
  border-radius: 50%;
}

.icon-person::after {
  inset: auto 10px 5px;
  height: 16px;
  border-radius: 14px 14px 0 0;
}

.icon-scale::before {
  inset: 8px 20px 8px;
  border-width: 0 2px 0 0;
}

.icon-scale::after {
  inset: 12px 5px auto;
  height: 20px;
  border-width: 2px 0 0;
}

.icon-mail::after {
  inset: 13px 8px 12px;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.product-grid {
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 34px;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 170px;
  margin-top: 22px;
  padding: 8px 14px;
  border: 1px solid #2b6eb4;
  border-radius: 3px;
  color: #0b4f95;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.product-card {
  min-height: 178px;
  padding: 14px 12px 12px;
  border: 1px solid var(--maw-border);
  border-top: 3px solid #2d72d9;
  border-radius: 5px;
  background: var(--maw-white);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.product-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(13, 31, 77, 0.08));
}

.product-card picture {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.product-card picture .product-card__icon {
  margin-bottom: 0;
}

.research-promo {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 152, 42, 0.36);
  border-radius: 5px;
  color: #061b48;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 237, 0.94));
  box-shadow: 0 16px 32px rgba(13, 31, 77, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.research-promo:hover {
  border-color: rgba(200, 152, 42, 0.58);
  box-shadow: 0 22px 42px rgba(13, 31, 77, 0.12);
  transform: translateY(-3px);
}

.research-promo picture,
.research-promo img {
  width: 42px;
  height: 42px;
}

.research-promo img {
  object-fit: contain;
}

.research-promo b,
.research-promo small {
  display: block;
}

.research-promo b {
  color: #0d1f4d;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.research-promo small {
  margin-top: 3px;
  color: #536276;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.product-card:hover {
  border-color: rgba(46, 130, 255, 0.32);
  box-shadow: 0 26px 48px rgba(13, 31, 77, 0.14);
  transform: perspective(850px) rotateX(2deg) rotateY(-3deg) translateY(-6px);
}

.product-card h3 {
  margin: 0 0 4px;
  color: #0b4f95;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.product-card strong {
  display: block;
  color: #0d3f7c;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.3;
}

.product-card p {
  margin: 8px 0 0;
  color: #334155;
  font-size: 9.5px;
  line-height: 1.55;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-card a {
  display: block;
  margin-top: 10px;
  color: #334155;
  text-align: right;
}

.product-card--cyan {
  border-top-color: #0bb2d4;
}

.product-card--green {
  border-top-color: #75b843;
}

.product-card--orange {
  border-top-color: #f59f00;
}

.product-card--purple {
  border-top-color: #8c36c8;
}

.product-card--navy {
  border-top-color: #0b4f95;
}

.trust-row {
  gap: 36px;
}

.trust-item {
  position: relative;
  padding: 2px 0;
  overflow: hidden;
}

.trust-item::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 199, 255, 0.86), transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.trust-item:hover::after {
  opacity: 1;
  transform: translateX(35%);
}

.contact-section {
  background: #ffffff;
}

.contact-grid {
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: stretch;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1.58fr;
  gap: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 126px;
  padding: 25px 22px;
  border: 1px solid #cfddec;
  border-radius: 4px;
  background: var(--maw-white);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.contact-card:hover {
  border-color: rgba(46, 130, 255, 0.32);
  box-shadow: 0 22px 44px rgba(13, 31, 77, 0.12);
  transform: translateY(-4px);
}

.contact-card h3 {
  margin: 0 0 6px;
  color: #0b4f95;
  font-size: 15px;
  font-weight: 800;
}

.contact-card p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 12px;
  line-height: 1.75;
}

.contact-card--image {
  position: relative;
  grid-template-columns: 52px minmax(0, 1fr) 240px;
  padding-right: 0;
}

.contact-card--image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  object-fit: cover;
}

.contact-card--image > div {
  position: relative;
  z-index: 1;
  max-width: 270px;
}

.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 210px;
  padding: 9px 16px;
  border-radius: 2px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d5aa4, #003d7c);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-footer {
  background: linear-gradient(90deg, #061525, #082443);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 64px));
  min-height: 67px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand--footer {
  font-size: 0;
}

.brand__logo--footer {
  width: 176px;
}

.brand--footer picture {
  width: 176px;
}

.site-footer nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }

  .product-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px), (max-device-width: 600px) {
  .site-header__inner,
  .hero__inner,
  .section-grid,
  .site-footer__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-header__inner {
    height: 76px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-word {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 21px;
  }

  .brand__logo {
    width: 188px;
  }

  .brand picture {
    width: 188px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 17px;
    right: 16px;
    margin-left: 0;
  }

  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(126, 199, 255, 0.55);
    border-radius: 3px;
    background: rgba(3, 17, 34, 0.92);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 10px 24px rgba(0, 0, 0, 0.26),
      0 0 16px rgba(126, 199, 255, 0.18);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(126, 199, 255, 0.34);
  }

  .mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    display: grid;
    min-width: 220px;
    padding: 12px 16px;
    border: 1px solid rgba(126, 199, 255, 0.25);
    border-radius: 4px;
    background: rgba(3, 17, 34, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu nav a {
    padding: 10px 0;
    color: #ffffff;
    font-weight: 800;
  }

  .hero {
    min-height: 620px;
  }

  .hero__inner {
    min-height: 620px;
    padding-top: 130px;
  }

  .hero__bg {
    background-position: 62% center;
  }

  .hero__copy {
    padding: 18px 0 0;
    background: linear-gradient(90deg, rgba(2, 12, 25, 0.54), rgba(2, 12, 25, 0));
  }

  .hero h1 {
    font-size: clamp(35px, 9.5vw, 42px);
    color: #ffffff;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
  }

  .hero__copy p {
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62);
    line-height: 1.9;
  }

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

  .button {
    width: min(100%, 280px);
  }

  .hero__data,
  .hero__coordinates,
  .hero__label,
  .hero__accent {
    display: none;
  }

  .section-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }

  .product-cards,
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .product-card {
    min-height: 190px;
  }

  .contact-card--image {
    grid-template-columns: 52px minmax(0, 1fr);
    padding-right: 22px;
  }

  .contact-card--image img {
    display: none;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.56;
    transform: perspective(700px) rotateX(64deg) rotateZ(-18deg) scale(1);
  }

  50% {
    opacity: 0.88;
    transform: perspective(700px) rotateX(64deg) rotateZ(-18deg) scale(1.035);
  }
}

@media (max-width: 560px), (max-device-width: 600px) {
  .hero h1 {
    font-size: clamp(31px, 8.7vw, 36px);
    line-height: 1.25;
    letter-spacing: 0;
  }

  .hero__copy p {
    font-size: 13px;
    line-height: 1.85;
  }

  .product-cards,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .solid-link,
  .outline-link {
    width: 100%;
  }
}

/* Technology enhancement layer for the corporate top page */
.button::after,
.outline-link::after,
.solid-link::after {
  content: "→";
}

.hero__scanner {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(126, 199, 255, 0.12) 36%, transparent 40% 100%),
    radial-gradient(circle at 72% 36%, rgba(126, 199, 255, 0.18), transparent 22%);
  mix-blend-mode: screen;
  animation: scannerSweep 8s ease-in-out infinite;
}

.hero-hud {
  position: absolute;
  top: 170px;
  right: 88px;
  z-index: 3;
  width: 268px;
  height: 226px;
  border: 1px solid rgba(126, 199, 255, 0.20);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(3, 17, 34, 0.12), rgba(7, 25, 45, 0.34)),
    radial-gradient(circle at 50% 45%, rgba(21, 214, 255, 0.18), transparent 42%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 0 42px rgba(126, 199, 255, 0.12);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
}

.hero-hud::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(126, 199, 255, 0.16);
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(126, 199, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 199, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-hud__ring {
  position: absolute;
  top: 34px;
  left: 34px;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(126, 199, 255, 0.72);
  border-radius: 50%;
  color: #dff5ff;
  background: radial-gradient(circle, rgba(21, 214, 255, 0.24), rgba(3, 17, 34, 0.28));
  box-shadow: 0 0 36px rgba(21, 214, 255, 0.34);
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.hero-hud__ring::before,
.hero-hud__ring::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(126, 199, 255, 0.28);
  border-radius: 50%;
  animation: orbitSpin 14s linear infinite;
}

.hero-hud__ring::after {
  inset: -38px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.hero-hud__metrics {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  width: 128px;
}

.hero-hud__metrics span {
  padding: 7px 9px;
  border: 1px solid rgba(126, 199, 255, 0.22);
  border-radius: 4px;
  color: rgba(241, 245, 250, 0.82);
  background: rgba(3, 17, 34, 0.34);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.technology-preview {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--maw-border);
  background:
    radial-gradient(circle at 82% 10%, rgba(126, 199, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.technology-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 31, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 31, 77, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.technology-preview__inner {
  position: relative;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 54px;
  padding: 34px 0;
}

.technology-copy h2 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.42;
  text-wrap: balance;
}

.technology-copy p {
  color: #334155;
  font-size: 12px;
  line-height: 1.78;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

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

.technology-panel {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(46, 130, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.86)),
    radial-gradient(circle at 90% 8%, rgba(126, 199, 255, 0.22), transparent 28%);
  box-shadow: 0 18px 40px rgba(13, 31, 77, 0.08);
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.technology-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 30%, rgba(126, 199, 255, 0.18), transparent 58%);
  opacity: 0;
  transform: translateX(-35%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

.technology-panel:hover {
  border-color: rgba(46, 130, 255, 0.36);
  box-shadow: 0 28px 60px rgba(13, 31, 77, 0.12);
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-6px);
}

.technology-panel:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.panel-index {
  color: var(--maw-gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.technology-panel h3 {
  position: relative;
  margin: 10px 0 8px;
  color: var(--maw-navy);
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.technology-panel p {
  position: relative;
  margin: 0;
  color: #334155;
  font-size: 11px;
  line-height: 1.68;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

[data-tilt-card] {
  will-change: transform;
}

@keyframes scannerSweep {
  0%,
  100% {
    transform: translateX(-3%) scale(1);
    opacity: 0.54;
  }

  50% {
    transform: translateX(3%) scale(1.03);
    opacity: 0.86;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1000px), (max-device-width: 600px) {
  .hero-hud {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 360px);
    height: 210px;
    margin-top: 28px;
  }

  .technology-preview__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100% - 32px, var(--container));
  }

  .technology-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px), (max-device-width: 600px) {
  .keep-line {
    display: inline;
  }

  .hero-hud {
    height: 188px;
  }

  .hero-hud__ring {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }

  .hero-hud__metrics {
    right: 16px;
    bottom: 18px;
  }

  .technology-copy h2 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.45;
  }
}
