@font-face {
  font-family: "LanobePOP";
  src: url("assets/LightNovelPOPv2.otf") format("opentype");
  font-display: swap;
}

:root {
  --yellow: #ffe36b;
  --yellow-deep: #ffd544;
  --cream: #fff6dc;
  --cream-strong: #fff0bd;
  --blue: #1f5a9d;
  --blue-dark: #123e72;
  --ink: #262626;
  --muted: #667085;
  --line: #06c755;
  --coral: #ff7467;
  --violet: #7c3aed;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 90, 157, 0.16);
  --radius: 8px;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-display: "LanobePOP", "Yu Gothic", sans-serif;
  --text-xs: 13px;
  --text-sm: 14px;
  --text-base: clamp(15px, 1.25vw, 16px);
  --text-md: clamp(16px, 1.55vw, 18px);
  --text-lg: clamp(18px, 1.9vw, 20px);
  --heading-sm: clamp(20px, 2.2vw, 24px);
  --heading-md: clamp(32px, 4.6vw, 48px);
  --heading-lg: clamp(48px, 6.8vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.82;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: max(20px, calc((100vw - 1180px) / 2));
  right: max(20px, calc((100vw - 1180px) / 2));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(18, 62, 114, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 220px;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}

.global-nav a,
.header-link,
.mobile-menu a {
  color: var(--blue-dark);
  font-size: var(--text-sm);
  font-weight: 900;
  text-decoration: none;
}

.header-link {
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 5px 0 rgba(18, 62, 114, 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  z-index: 29;
  top: 92px;
  left: 18px;
  right: 18px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 11px 10px;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 126px 20px 74px;
  background: var(--yellow);
  overflow: hidden;
}

.hero-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.small-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: 900;
}

.small-label::before,
.small-label::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-lg);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 #fff;
}

.hero h1 span {
  display: block;
}

.hero-statement {
  margin: 14px 0 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 800;
}

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 7px 0 rgba(18, 62, 114, 0.18);
}

.button-subtle {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(31, 90, 157, 0.18);
  box-shadow: 0 6px 0 rgba(18, 62, 114, 0.1);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-notes li {
  padding: 7px 12px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.tech-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tech-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(31, 90, 157, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 90, 157, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.tech-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 2px solid rgba(31, 90, 157, 0.1);
}

.tech-panel-head img {
  width: min(220px, 55%);
}

.tech-panel-head span {
  color: #667085;
  font-size: var(--text-xs);
  font-weight: 900;
  text-align: right;
}

.connection-map {
  position: relative;
  z-index: 1;
  height: 300px;
  margin: 20px 0;
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(18, 62, 114, 0.2);
  font-family: var(--font-display);
  font-size: var(--heading-sm);
}

.node-neconote {
  top: 88px;
  left: 50%;
  width: 170px;
  height: 170px;
  background: #fff;
  transform: translateX(-50%);
}

.node-neconote img {
  width: 130px;
}

.node-ai {
  top: 14px;
  left: 18px;
  width: 96px;
  height: 96px;
  background: var(--violet);
}

.node-code {
  right: 18px;
  top: 34px;
  width: 108px;
  height: 108px;
  background: var(--blue);
}

.node-line {
  right: 40px;
  bottom: 8px;
  width: 94px;
  height: 94px;
  background: var(--line);
}

.signal-line {
  position: absolute;
  z-index: -1;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 90, 157, 0), var(--blue), rgba(31, 90, 157, 0));
  border-radius: 999px;
  transform-origin: left center;
}

.signal-line-1 {
  top: 108px;
  left: 88px;
  width: 190px;
  transform: rotate(19deg);
}

.signal-line-2 {
  top: 128px;
  right: 98px;
  width: 178px;
  transform: rotate(159deg);
}

.signal-line-3 {
  right: 90px;
  bottom: 104px;
  width: 170px;
  transform: rotate(205deg);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-grid div {
  padding: 14px 10px;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
  text-align: center;
}

.metric-grid strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-sm);
  line-height: 1;
}

.metric-grid span {
  color: #667085;
  font-size: var(--text-xs);
  font-weight: 900;
}

.hero-cat {
  position: absolute;
  z-index: 3;
  width: clamp(96px, 12vw, 130px);
  pointer-events: none;
}

.hero-cat-left {
  left: -16px;
  bottom: 12px;
  transform: rotate(-10deg);
}

.hero-cat-right {
  right: -14px;
  top: -26px;
  transform: rotate(8deg);
}

.intro-band {
  padding: 30px 20px;
  background: var(--blue);
  color: #fff;
}

.intro-copy {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 6px;
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 900;
}

.intro-copy p {
  margin: 0;
}

.section {
  scroll-margin-top: 104px;
  padding: clamp(58px, 7vw, 86px) 20px;
}

.section-white {
  background: #fff;
}

.section-cream {
  background: var(--cream);
}

.section-blue {
  background:
    linear-gradient(180deg, rgba(18, 62, 114, 0.98), rgba(31, 90, 157, 0.96)),
    url("assets/zimusho2.jpg") center / cover no-repeat;
  color: #fff;
}

.proof-grid,
.news-evidence,
.engineer-grid,
.team-proof-strip,
.implementation-board {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(24px, 4vw, 36px);
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.relation-copy h3,
.line-cta h2 {
  margin: 6px 0 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: var(--heading-md);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading h2 span,
.line-cta h2 span {
  display: inline;
}

.section-heading-light h2,
.section-heading-light .small-label {
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.proof-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.08);
  transition: transform 0.18s ease;
}

.proof-card-primary {
  grid-row: span 2;
  min-height: 536px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 62, 114, 0.24), rgba(18, 62, 114, 0.92)),
    url("assets/hero-consultation.webp") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 45px rgba(18, 62, 114, 0.22);
}

.proof-date {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 11px;
  color: var(--blue-dark);
  background: #fff;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
}

.proof-card-primary .proof-date {
  color: var(--blue-dark);
}

.proof-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.45;
}

.proof-card-primary h3,
.proof-card-primary p {
  color: #fff;
}

.proof-card p {
  margin: 0;
  color: #475467;
  font-weight: 800;
}

.news-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.news-evidence article {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 24px;
  color: var(--blue-dark);
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.08);
  transition: transform 0.18s ease;
}

.news-evidence article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow), var(--coral), var(--violet));
}

.news-evidence span {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  padding: 5px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
}

.news-evidence h3 {
  margin: 16px 0 10px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.45;
}

.news-evidence p {
  margin: 0;
  color: #475467;
  font-weight: 800;
}

.relation-layout,
.company-layout,
.workflow {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.relation-layout,
.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.relation-copy {
  position: sticky;
  top: 118px;
  padding: 28px;
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.relation-copy h3 {
  font-size: var(--heading-sm);
}

.relation-copy p,
.relation-cards p,
.tech-grid p,
.service-grid p,
.flow-list p,
.company-info dd,
.company-photo p,
.line-cta p {
  margin: 0;
  color: #475467;
}

.relation-cards,
.tech-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.relation-cards article,
.tech-grid article,
.service-grid article,
.company-photo,
.company-info {
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.08);
}

.relation-cards article {
  padding: 24px;
}

.relation-cards span,
.tech-grid span,
.service-grid span {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  padding: 5px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
}

.relation-cards h3,
.tech-grid h3,
.service-grid h3,
.flow-list h3 {
  margin: 12px 0 8px;
  color: var(--blue-dark);
  font-size: var(--text-lg);
  font-weight: 900;
}

.tech-grid,
.service-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.tech-grid article {
  min-height: 270px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.tech-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  border-radius: 999px;
}

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

.engineer-card {
  position: relative;
  overflow: hidden;
  min-height: 548px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 0 rgba(31, 90, 157, 0.08);
  transition: transform 0.18s ease;
}

.engineer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--coral));
}

.engineer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.engineer-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
}

.engineer-card h3 {
  margin: 14px 0 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.engineer-role {
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.12);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
  line-height: 1.2;
}

.engineer-lead {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: var(--text-md);
  font-weight: 900;
  line-height: 1.72;
}

.engineer-highlights {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.engineer-highlights li {
  position: relative;
  padding-left: 22px;
  color: #475467;
  font-weight: 800;
}

.engineer-highlights li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border: 3px solid var(--cream);
  border-radius: 50%;
  transform: translateY(-50%);
}

.engineer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.engineer-tags span {
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 900;
}

.profile-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(18, 62, 114, 0.16);
}

.team-proof-strip {
  margin-top: 18px;
  padding: 22px 26px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius);
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 8px 0 rgba(31, 90, 157, 0.12);
}

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

.service-grid article {
  grid-column: span 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 22px;
}

.service-grid article:nth-child(n + 4) {
  grid-column: span 3;
}

.service-grid article:nth-child(even) {
  background: #fff;
}

.service-grid article:nth-child(odd) {
  background: var(--cream-strong);
}

.service-grid article > img,
.service-visual {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  margin: -22px -22px 18px;
  border-bottom: 2px solid rgba(31, 90, 157, 0.1);
}

.service-grid article > img {
  display: block;
  object-fit: cover;
}

.service-visual {
  color: #fff;
  background:
    linear-gradient(rgba(18, 62, 114, 0.82), rgba(18, 62, 114, 0.82)),
    linear-gradient(135deg, var(--blue), var(--violet));
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.service-visual-network {
  background:
    linear-gradient(rgba(31, 90, 157, 0.84), rgba(31, 90, 157, 0.84)),
    linear-gradient(90deg, var(--yellow), var(--blue));
}

.service-visual-os {
  color: var(--yellow);
  background:
    linear-gradient(rgba(18, 62, 114, 0.92), rgba(18, 62, 114, 0.92)),
    linear-gradient(135deg, var(--violet), var(--blue-dark));
}

.service-grid article > strong {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-dark);
  font-size: var(--text-sm);
  font-weight: 900;
}

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

.implementation-board div {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 0 rgba(31, 90, 157, 0.12);
  transition: transform 0.18s ease;
}

.implementation-board div:nth-child(3n + 2) {
  background: var(--blue);
}

.implementation-board div:nth-child(3n) {
  background: #2f4f85;
}

.implementation-board strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 900;
  line-height: 1.45;
}

.implementation-board span {
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
  font-weight: 900;
}

.flow-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--cream);
  border: 2px solid rgba(31, 90, 157, 0.1);
  border-radius: var(--radius);
}

.flow-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--heading-sm);
}

.company-info {
  display: grid;
  overflow: hidden;
}

.company-info div {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #fff;
}

.company-info div:nth-child(even) {
  background: var(--cream);
}

.company-info dt,
.company-info dd {
  padding: 15px 16px;
}

.company-info dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.company-info a {
  color: var(--blue);
  font-weight: 900;
}

.company-photo {
  overflow: hidden;
  background: #fff;
}

.company-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.company-photo p {
  padding: 20px 22px 24px;
  font-weight: 900;
}

.line-cta {
  padding: clamp(54px, 8vw, 86px) 20px;
  background: var(--blue);
  color: #fff;
}

.line-cta-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.line-cta img {
  width: 156px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.line-cta .small-label,
.line-cta h2,
.line-cta p {
  color: #fff;
}

.line-cta .small-label::before,
.line-cta .small-label::after {
  background: #fff;
}

.line-cta p {
  max-width: 620px;
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 38px 20px 48px;
  color: #fff;
  background: var(--blue-dark);
  text-align: center;
}

.site-footer img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-copy > *,
  .tech-panel,
  .hero-cat,
  .reveal-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.58s ease forwards;
  }

  .hero-copy > :nth-child(1) {
    animation-delay: 0.05s;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 0.1s;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 0.15s;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 0.2s;
  }

  .hero-copy > :nth-child(5) {
    animation-delay: 0.25s;
  }

  .hero-copy > :nth-child(6),
  .tech-panel {
    animation-delay: 0.3s;
  }

  .hero-cat {
    animation-delay: 0.42s;
  }

  .hero-cat-left {
    animation: fadeUp 0.58s ease 0.42s forwards, catFloatLeft 4.8s ease-in-out 1.1s infinite;
  }

  .hero-cat-right {
    animation: fadeUp 0.58s ease 0.48s forwards, catFloatRight 5.2s ease-in-out 1.2s infinite;
  }

  .signal-line {
    animation: signalPulse 2.7s ease-in-out infinite;
  }

  .button:hover,
  .proof-card:hover,
  .news-evidence article:hover,
  .relation-cards article:hover,
  .tech-grid article:hover,
  .engineer-card:hover,
  .implementation-board div:hover,
  .service-grid article:hover {
    transform: translateY(-4px);
  }

  .motion-ready .reveal-item {
    animation: none;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  @keyframes headerIn {
    from {
      opacity: 0;
      transform: translateY(-18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes catFloatLeft {
    0%,
    100% {
      transform: rotate(-10deg) translateY(0);
    }
    50% {
      transform: rotate(-6deg) translateY(-10px);
    }
  }

  @keyframes catFloatRight {
    0%,
    100% {
      transform: rotate(8deg) translateY(0);
    }
    50% {
      transform: rotate(4deg) translateY(-8px);
    }
  }

  @keyframes signalPulse {
    0%,
    100% {
      opacity: 0.35;
    }
    50% {
      opacity: 1;
    }
  }
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-link {
    justify-self: end;
  }

  .hero-inner,
  .relation-layout,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .relation-copy {
    position: static;
  }

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

  .proof-card-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .news-evidence {
    grid-template-columns: 1fr;
  }

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

  .service-grid article,
  .service-grid article:nth-child(n + 4) {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 58px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: min(58vw, 210px);
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    text-shadow: 2px 2px 0 #fff;
  }

  .hero-statement {
    font-size: clamp(25px, 8vw, 34px);
  }

  .hero-lead {
    font-size: var(--text-base);
  }

  .hero-actions,
  .line-cta-inner {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .tech-panel {
    padding: 20px;
  }

  .tech-panel-head {
    display: grid;
  }

  .tech-panel-head img {
    width: 220px;
  }

  .tech-panel-head span {
    text-align: left;
  }

  .connection-map {
    height: 260px;
  }

  .node-neconote {
    width: 132px;
    height: 132px;
  }

  .node-neconote img {
    width: 104px;
  }

  .node-ai,
  .node-code,
  .node-line {
    width: 78px;
    height: 78px;
    font-size: var(--text-lg);
  }

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

  .hero-cat {
    width: 84px;
  }

  .section {
    padding: 58px 20px;
  }

  .section-heading h2,
  .relation-copy h3,
  .line-cta h2 {
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.2;
  }

  .section-heading h2 span,
  .line-cta h2 span {
    display: block;
  }

  .section-heading-left {
    text-align: center;
  }

  .tech-grid,
  .engineer-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .news-evidence,
  .implementation-board {
    grid-template-columns: 1fr;
  }

  .engineer-card {
    min-height: auto;
    padding: 24px;
  }

  .engineer-card-head {
    display: grid;
  }

  .engineer-role {
    width: fit-content;
  }

  .profile-link {
    width: 100%;
  }

  .proof-card,
  .proof-card-primary {
    min-height: auto;
  }

  .company-info div {
    grid-template-columns: 1fr;
  }

  .company-info dt {
    padding-bottom: 0;
  }

  .flow-list li {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .flow-list span {
    width: 44px;
    height: 44px;
  }

  .line-cta-inner {
    justify-items: center;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 48px;
  }
}
