:root {
  --navy: #071827;
  --ink: #102033;
  --muted: #607184;
  --line: #dbe5ec;
  --surface: #f6fafb;
  --white: #ffffff;
  --cyan: #08a6c8;
  --emerald: #1fb68f;
  --amber: #f0a43a;
  --coral: #e96b5d;
  --shadow: 0 24px 70px rgba(14, 34, 54, 0.14);
  --title-offset: clamp(24px, 7vw, 96px);
  --site-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

@media (min-width: 981px) {
  body {
    zoom: var(--site-scale);
  }
}

main > section {
  scroll-margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 32, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  font-size: clamp(0.78rem, 0.82vw, 0.86rem);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 2px;
  opacity: 0.86;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 8px 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.96) 0%, rgba(7, 24, 39, 0.78) 42%, rgba(7, 24, 39, 0.12) 76%),
    radial-gradient(circle at 18% 80%, rgba(31, 182, 143, 0.24), transparent 32%),
    radial-gradient(circle at 45% 18%, rgba(240, 164, 58, 0.14), transparent 25%);
}

.hero::after {
  content: none;
}

.hero-network {
  position: absolute;
  top: clamp(106px, 12vh, 138px);
  left: calc(50% - min(20vw, 390px));
  z-index: 1;
  width: min(21vw, 380px);
  height: min(68vh, 620px);
  pointer-events: none;
  opacity: 0.92;
}

.hero-network svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-network polyline {
  fill: none;
  stroke: rgba(42, 222, 205, 0.48);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-network circle {
  fill: var(--navy);
  stroke: rgba(42, 222, 205, 0.94);
  stroke-width: 1.1;
}

.hero-network circle.is-glow {
  fill: #45e5c7;
  stroke: rgba(69, 229, 199, 0.9);
  filter:
    drop-shadow(0 0 10px rgba(69, 229, 199, 0.72))
    drop-shadow(0 0 28px rgba(69, 229, 199, 0.48))
    drop-shadow(0 0 54px rgba(69, 229, 199, 0.24));
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-node-pulse 8.4s ease-in-out infinite;
}

.hero-network circle.is-glow:nth-of-type(10) {
  animation-delay: 2.8s;
}

.hero-network circle.is-glow:nth-of-type(11) {
  animation-delay: 5.6s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding: 136px 32px 150px clamp(24px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-bg-title {
  display: none;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.3rem, 3.25vw, 3.7rem);
  line-height: 1.16;
  letter-spacing: 0;
  animation: hero-fade-up 0.9s ease both;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(135deg, #ffffff 0%, #5ee7e5 44%, #1fb68f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  animation: hero-fade-up 0.9s ease 0.16s both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  animation: hero-fade-up 0.9s ease 0.28s both;
}

.hero-tags span {
  display: inline-flex;
  width: 136px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
  animation: hero-fade-up 0.9s ease 0.4s both;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(8, 166, 200, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button.secondary.dark {
  border-color: rgba(16, 32, 51, 0.28);
  color: var(--ink);
}

.hero-actions .button {
  position: relative;
  min-width: 198px;
  min-height: 60px;
  padding: 15px 18px 15px 28px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 12px;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.hero-actions .button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.78;
}

.hero-actions .button::after {
  content: ">";
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-left: 16px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(94, 231, 229, 0.28);
  font-size: 0.92rem;
  line-height: 1;
  opacity: 0.9;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-actions .button:hover {
  transform: translateY(-3px);
}

.hero-actions .button:hover::after {
  transform: translateX(3px);
}

.hero-actions .button.primary {
  background: linear-gradient(135deg, #08a6c8 0%, #16c7ba 48%, #1fb68f 100%);
  box-shadow: 0 22px 48px rgba(8, 166, 200, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-actions .button.secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-actions .button.secondary:hover {
  background: linear-gradient(135deg, rgba(94, 231, 229, 0.16), rgba(255, 255, 255, 0.06));
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual > img:not(.hero-logo-watermark) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-watermark {
  position: absolute;
  top: 21%;
  left: 50%;
  z-index: 2;
  width: clamp(190px, 20vw, 360px);
  height: auto;
  object-fit: contain;
  opacity: 0.34;
  filter: drop-shadow(0 20px 46px rgba(8, 166, 200, 0.22));
  transform: translateX(-50%);
  pointer-events: none;
  animation: hero-logo-breathe 5.6s ease-in-out infinite;
}

.hero-panel-row {
  position: absolute;
  right: clamp(28px, 3vw, 56px);
  bottom: 30px;
  left: calc(50% + 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  animation: hero-panel-in 1s ease 0.48s both;
}

.hero-panel-row::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--cyan), var(--emerald));
  box-shadow:
    0 0 18px rgba(8, 166, 200, 0.5),
    0 0 36px rgba(31, 182, 143, 0.28);
  opacity: 0;
  animation: hero-panel-marker 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-logo-breathe {
  0%,
  100% {
    opacity: 0.28;
    filter:
      drop-shadow(0 18px 38px rgba(8, 166, 200, 0.16))
      drop-shadow(0 0 0 rgba(94, 231, 229, 0));
    transform: translateX(-50%) scale(0.985);
  }

  50% {
    opacity: 0.46;
    filter:
      drop-shadow(0 24px 58px rgba(8, 166, 200, 0.34))
      drop-shadow(0 0 26px rgba(94, 231, 229, 0.22));
    transform: translateX(-50%) scale(1.018);
  }
}

@keyframes hero-node-pulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.72);
    box-shadow:
      0 0 12px rgba(69, 229, 199, 0.36),
      0 0 30px rgba(69, 229, 199, 0.16);
  }

  45%,
  58% {
    opacity: 1;
    transform: scale(1.22);
    box-shadow:
      0 0 24px rgba(69, 229, 199, 0.96),
      0 0 58px rgba(69, 229, 199, 0.56),
      0 0 96px rgba(69, 229, 199, 0.24);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-marker {
  0% {
    left: 0;
    opacity: 0;
  }

  4%,
  19% {
    left: 0;
    opacity: 1;
  }

  23% {
    left: 0;
    opacity: 0;
  }

  24% {
    left: 25%;
    opacity: 0;
  }

  28%,
  43% {
    left: 25%;
    opacity: 1;
  }

  47% {
    left: 25%;
    opacity: 0;
  }

  48% {
    left: 50%;
    opacity: 0;
  }

  52%,
  67% {
    left: 50%;
    opacity: 1;
  }

  71% {
    left: 50%;
    opacity: 0;
  }

  72% {
    left: 75%;
    opacity: 0;
  }

  76%,
  91% {
    left: 75%;
    opacity: 1;
  }

  96%,
  100% {
    left: 75%;
    opacity: 0;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-bg-title.reveal-item {
  opacity: 0;
  transform: translate(-50%, 18px) !important;
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.page-bg-title.reveal-item.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) !important;
}

@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;
  }
}

.hero-status,
.hero-metrics div {
  min-height: 92px;
  padding: 20px 22px;
}

.hero-status {
  display: grid;
  align-content: center;
}

.hero-status strong {
  color: var(--white);
  line-height: 1.3;
}

.hero-status span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hero-metrics {
  display: contents;
}

.hero-metrics div {
  display: grid;
  align-content: center;
}

.hero-metrics div,
.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
  line-height: 1.35;
}

.hero-metrics strong {
  font-size: 1.05rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.section,
.section-band,
.contact-section {
  padding: clamp(78px, 9vw, 130px) clamp(22px, 6vw, 86px);
}

.section-inner,
.section-heading,
.service-grid,
.split-section,
.flow-list,
.company-section,
.contact-section,
.site-footer {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.section-band {
  background: var(--surface);
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 250, 251, 0.94), rgba(238, 247, 248, 0.98)),
    var(--surface);
}

.intro::before {
  position: absolute;
  top: 48px;
  right: max(24px, 9vw);
  width: 310px;
  height: 310px;
  border: 1px solid rgba(8, 166, 200, 0.18);
  border-radius: 50%;
  content: "";
}

.intro::after {
  position: absolute;
  right: 12vw;
  bottom: -110px;
  width: 420px;
  height: 220px;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 166, 200, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 182, 143, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  transform: rotate(-8deg);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding-left: var(--title-offset);
}

.intro-label {
  position: absolute;
  top: -122px;
  left: 50%;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.intro-label .section-kicker {
  position: relative;
  z-index: 0;
  margin: 0;
  color: rgba(16, 32, 51, 0.055);
  font-size: clamp(4.2rem, 10vw, 8.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  white-space: nowrap;
}

.intro-main {
  position: relative;
  z-index: 1;
  grid-column: 1;
  padding-top: 148px;
}

.intro-main::before {
  position: absolute;
  top: -28px;
  left: -34px;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  content: "";
  background: linear-gradient(135deg, rgba(8, 166, 200, 0.16), rgba(31, 182, 143, 0.1));
  transform: rotate(12deg);
}

.intro-tags {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 -14px;
  padding: 0 14px;
}

.intro-tags span {
  justify-self: center;
  width: 124px;
  padding: 5px 10px;
  border: 1px solid rgba(8, 166, 200, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 32, 47, 0.06);
}

.intro-lead-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.intro-points div {
  position: relative;
  overflow: hidden;
  padding: 28px 14px 14px;
  border: 1px solid rgba(8, 166, 200, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 36px rgba(15, 32, 47, 0.06);
}

.intro-points div::after {
  position: absolute;
  top: -26px;
  right: -22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(18, 190, 176, 0.11);
  content: "";
}

.intro-points span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.intro-points strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.intro-points small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.intro-panel {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid rgba(219, 229, 236, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 58px rgba(15, 32, 47, 0.08);
  backdrop-filter: blur(16px);
}

.intro-panel-title {
  display: block;
  max-width: 360px;
  margin: 0 48px 16px 0;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.55;
}

.intro-panel::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 6px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
}

.intro-panel p {
  line-height: 1.9;
}

.intro-checks {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.intro-checks li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.intro-checks li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  box-shadow: 0 0 14px rgba(8, 166, 200, 0.24);
  content: "";
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
}

.intro-stats div {
  padding: 18px;
  background: var(--navy);
  color: var(--white);
}

.intro-stats strong,
.intro-stats span {
  display: block;
  line-height: 1.35;
}

.intro-stats strong {
  color: var(--emerald);
  font-size: 1.05rem;
}

.intro-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.company-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-copy h2 span {
  display: block;
}

.intro-panel p,
.split-copy p,
.company-section p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
  padding-left: var(--title-offset);
  padding-top: 154px;
}

.section-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.section-heading h2 span {
  display: block;
}

#flow .section-heading h2 {
  max-width: 920px;
}

#flow .section-heading h2 span {
  white-space: nowrap;
}

.section-heading > .section-kicker,
.split-copy > .section-kicker,
.company-section > div:first-child > .section-kicker,
.contact-copy > .section-kicker {
  position: absolute;
  top: -126px;
  left: 50%;
  z-index: 0;
  margin: 0;
  color: rgba(16, 32, 51, 0.055);
  font-size: clamp(4.2rem, 10vw, 8.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

#service .section-heading > .section-kicker {
  top: -98px;
}

.split-copy > .section-kicker,
.company-section > div:first-child > .section-kicker,
.contact-copy > .section-kicker {
  left: calc(50vw - max(22px, calc((100vw - 1160px) / 2)));
}

.company-section > div:first-child > .section-kicker {
  top: -250px;
}

#service {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(8, 166, 200, 0.1), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(31, 182, 143, 0.08), transparent 26%),
    var(--white);
}

#service::before {
  position: absolute;
  top: 118px;
  right: clamp(20px, 7vw, 92px);
  width: 210px;
  height: 210px;
  border: 1px solid rgba(8, 166, 200, 0.16);
  border-radius: 50%;
  content: "";
}

#service::after {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 34%;
  height: 170px;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 166, 200, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 182, 143, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, transparent);
}

#service .section-heading,
#service .service-grid {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 42px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(15, 32, 47, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(8, 166, 200, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(240, 164, 58, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -56px;
  bottom: -66px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(8, 166, 200, 0.14);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(8, 166, 200, 0.42);
  box-shadow: 0 28px 78px rgba(15, 32, 47, 0.14);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.accent {
  background:
    linear-gradient(145deg, rgba(8, 166, 200, 0.18), transparent 38%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.card-number {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--emerald);
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  opacity: 0.9;
}

.card-number::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
}

.service-card.accent .card-number {
  color: rgba(255, 255, 255, 0.94);
}

.service-card.accent .card-number::after {
  background: linear-gradient(90deg, var(--amber), var(--emerald));
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 48px 0 18px;
  font-size: 1.45rem;
  line-height: 1.36;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
}

#strength {
  overflow: hidden;
}

#strength::before {
  position: absolute;
  top: 96px;
  left: clamp(22px, 5vw, 70px);
  width: 220px;
  height: 220px;
  border: 1px solid rgba(8, 166, 200, 0.14);
  border-radius: 50%;
  content: "";
}

#strength::after {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 42%;
  height: 210px;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 166, 200, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 182, 143, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  transform: rotate(4deg);
}

.split-copy {
  position: relative;
  z-index: 1;
  top: auto;
  width: min(900px, 100%);
  margin-inline: auto;
  padding-left: 0;
  padding-top: 196px;
  text-align: center;
}

.split-copy p {
  max-width: 620px;
  margin: 22px auto 0;
}

.split-copy h2,
.split-copy > p:not(.section-kicker),
.company-section > div:first-child h2,
.company-section > div:first-child > p:not(.section-kicker),
.contact-copy h2,
.contact-copy > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
}

.split-copy h2 {
  max-width: 720px;
  margin-inline: auto;
}

.split-copy h2 span {
  display: block;
  white-space: nowrap;
}

.strength-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 54px;
}

.strength-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  min-height: 330px;
  align-items: start;
  overflow: hidden;
  padding: 34px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(15, 32, 47, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.strength-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(8, 166, 200, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.strength-item:hover {
  border-color: rgba(8, 166, 200, 0.34);
  box-shadow: 0 24px 68px rgba(15, 32, 47, 0.12);
  transform: translateY(-6px);
}

.strength-item:hover::before {
  opacity: 1;
}

.strength-item:last-child {
  border-bottom: 1px solid var(--line);
}

.strength-item span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--coral);
  font-size: clamp(4.5rem, 7vw, 6.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
}

.strength-item span::after {
  display: block;
  width: 46px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--amber));
}

.strength-item div {
  position: relative;
  z-index: 1;
}

.strength-item h3 {
  min-height: 1.8em;
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.strength-item p {
  margin: 0;
  color: var(--muted);
}

#flow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 250, 251, 0.98), rgba(238, 247, 248, 0.96)),
    var(--surface);
}

#flow::before {
  position: absolute;
  top: 88px;
  right: clamp(22px, 7vw, 88px);
  width: 250px;
  height: 250px;
  border: 1px solid rgba(31, 182, 143, 0.18);
  border-radius: 50%;
  content: "";
}

#flow::after {
  position: absolute;
  left: 8vw;
  bottom: -68px;
  width: 360px;
  height: 180px;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 166, 200, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(240, 164, 58, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
  transform: rotate(-6deg);
}

#flow .section-heading,
#flow .flow-list {
  position: relative;
  z-index: 1;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  background: transparent;
}

.flow-list li {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(219, 229, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 166, 200, 0.055), transparent 42%),
    var(--white);
  box-shadow: 0 18px 52px rgba(15, 32, 47, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-list li::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 112px;
  content: "";
  background:
    linear-gradient(135deg, rgba(8, 166, 200, 0.16), rgba(31, 182, 143, 0.04)),
    linear-gradient(90deg, rgba(8, 166, 200, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 182, 143, 0.14) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.82;
}

.flow-list li::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
}

.flow-list li:hover {
  box-shadow: 0 26px 72px rgba(15, 32, 47, 0.12);
  transform: translateY(-6px);
}

.flow-list span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--amber);
  font-size: clamp(4.2rem, 6.8vw, 6.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
}

.flow-list h3 {
  position: relative;
  z-index: 1;
  margin: 52px 0 12px;
  font-size: 1.18rem;
}

.flow-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(72px, 7vw, 112px);
  justify-content: center;
}

.company-section > div:first-child {
  position: relative;
  padding-left: 0;
  padding-top: 154px;
  text-align: center;
}

.company-section > div:first-child::after {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 0;
  width: min(430px, 82%);
  aspect-ratio: 1;
  background: url("assets/AlesLink_logo_mark.png") center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  transform: translateX(-50%);
}

.company-logo-shadow {
  position: absolute;
  top: 28px;
  left: 39%;
  z-index: 0;
  width: min(560px, 108%);
  opacity: 0.2;
  filter: grayscale(1) saturate(0.28) brightness(0.82);
  pointer-events: none;
  transform: translateX(-50%) rotate(-5deg);
}

.company-section p {
  margin-top: 20px;
}

.company-section > div:first-child > p:not(.section-kicker) {
  max-width: 560px;
  margin-inline: auto;
}

.company-name {
  font-size: clamp(2.2rem, 3.4vw, 3.05rem);
  white-space: nowrap;
}

.company-table {
  width: min(620px, 100%);
  margin: 96px 0 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 130px minmax(380px, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-weight: 800;
}

.company-table dt.company-table__label--normal {
  font-weight: 400;
}

.company-table dt.company-table__label--tel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  min-width: 0;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(560px, 1.06fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(22px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(246, 250, 251, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white);
  color: var(--ink);
}

.contact-section::before {
  content: none;
}

.contact-section::after {
  position: absolute;
  right: max(22px, calc((100vw - 1160px) / 2));
  bottom: -74px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(8, 166, 200, 0.16);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  padding-left: clamp(0px, 2vw, 32px);
  padding-top: 154px;
}

.contact-copy h2 {
  max-width: 660px;
}

#contact .contact-copy h2 {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.contact-copy h2 span {
  white-space: nowrap;
}

.contact-copy p {
  max-width: 560px;
  margin-inline: auto;
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.contact-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-inline: auto;
  margin-top: 34px;
}

.contact-flow div {
  position: relative;
  min-height: 118px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(8, 166, 200, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(15, 32, 47, 0.05);
}

.contact-flow div::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
  content: "";
  opacity: 0.72;
}

.contact-flow span {
  display: block;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.contact-flow strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-flow small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-top: 86px;
}

.contact-form label {
  display: grid;
  gap: 4px;
  font-weight: 800;
}

.contact-form span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form em {
  color: var(--coral);
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  outline: none;
  padding: 7px 0 10px;
}

.contact-form textarea {
  height: 220px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 2px 0 rgba(8, 166, 200, 0.16);
}

.contact-form label.is-invalid input,
.contact-form label.is-invalid textarea {
  border-color: var(--coral);
  box-shadow: 0 2px 0 rgba(233, 107, 93, 0.18);
}

.field-error {
  display: none;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.contact-form label.is-invalid .field-error {
  display: block;
}

.contact-form button {
  justify-self: center;
  cursor: pointer;
}

.form-message {
  min-height: 1.7em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.58);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(219, 229, 236, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 90px rgba(7, 24, 39, 0.22);
}

.modal-panel-small {
  width: min(480px, 100%);
}

.modal-panel-wide {
  width: min(780px, 100%);
}

.modal-panel .section-kicker {
  margin-bottom: 8px;
}

.modal-panel h2 {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.25;
}

.modal-panel-small h2 {
  margin-bottom: 14px;
}

.confirm-text {
  margin: 0;
  color: var(--muted);
}

.policy-body {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.policy-body p {
  margin: 0;
}

.policy-body h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.review-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.review-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  background: var(--white);
}

.review-list dt {
  color: var(--muted);
  font-weight: 800;
}

.review-list dd {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

[data-privacy-modal] .modal-actions {
  justify-content: center;
}

[data-review-modal] .modal-actions {
  justify-content: center;
}

[data-confirm-modal] .modal-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(22px, 6vw, 86px) 20px;
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.footer-link-button {
  appearance: none;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--ink);
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--emerald));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (min-width: 981px) {
  main > section {
    min-height: calc(100vh - 78px);
  }

  .hero {
    min-height: calc(100vh / var(--site-scale));
  }

  .section,
  .section-band,
  .contact-section {
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .intro,
  #service,
  #flow {
    display: grid;
    align-content: center;
  }

  #service {
    align-content: center;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .split-section,
  .company-section,
  .contact-section {
    align-items: center;
  }

  .contact-form {
    padding-top: 228px;
  }

  .hero-copy {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .hero-panel-row {
    bottom: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
    padding-top: 132px;
  }

  .section-heading > .section-kicker {
    top: -44px;
  }

  #service .section-heading > .section-kicker,
  #flow .section-heading > .section-kicker {
    top: -44px;
  }

  .split-copy > .section-kicker {
    top: -44px;
    left: 50%;
    width: max-content;
    max-width: 100vw;
    transform: translateX(-50%);
  }

  .intro-label {
    top: -44px;
  }

  .company-section > div:first-child > .section-kicker {
    left: 50%;
    top: -44px;
    width: min(820px, 100vw);
    text-align: center;
    transform: translateX(-50%);
  }

  .contact-copy > .section-kicker {
    left: 50%;
    top: -44px;
    width: min(820px, 100vw);
    text-align: center;
    transform: translateX(-50%);
  }

  #strength.split-section {
    gap: 20px;
  }

  .intro-main,
  .company-section > div:first-child,
  .contact-copy {
    padding-top: 132px;
  }

  .split-copy {
    padding-top: 132px;
  }

  .strength-list {
    padding-top: 0;
    margin-top: -8px;
  }

  .intro,
  #service,
  #strength,
  #flow,
  .company-section,
  .contact-section {
    position: relative;
  }

  .intro-grid,
  .section-heading,
  .split-copy,
  .company-section > div:first-child,
  .contact-copy {
    position: relative;
  }

  .page-bg-title {
    display: block;
    position: absolute;
    top: 54px;
    left: 50%;
    z-index: 0;
    width: min(820px, 100vw);
    margin: 0;
    color: rgba(16, 32, 51, 0.055);
    font-size: clamp(4.2rem, 10vw, 8.6rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.86;
    pointer-events: none;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .company-section > .page-bg-title {
    margin-top: 0;
    color: rgba(16, 32, 51, 0.055);
  }

  #strength .page-bg-title {
    top: 34px;
  }

  .intro-label,
  #about .section-kicker,
  #service .section-heading > .section-kicker,
  #strength .split-copy > .section-kicker,
  #flow .section-heading > .section-kicker,
  #company .section-kicker,
  #company > div:first-child > .section-kicker,
  #contact .contact-copy > .section-kicker {
    display: none;
  }

  .flow-list li {
    min-height: 280px;
  }

  .company-table {
    margin-top: 72px;
  }

  .company-section > div:first-child {
    transform: translateX(-43px);
  }

  .intro-panel {
    transform: translateY(70px);
  }

  #about .intro-panel {
    translate: 0 96px;
  }

  #company.company-section > div:first-child {
    translate: -15px 0;
  }

  #company.company-section > div:first-child::after {
    top: 24px;
    width: min(460px, 86%);
    opacity: 0.14;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
  }

  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 124px 24px 250px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    opacity: 0.42;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 24, 39, 0.96) 0%, rgba(7, 24, 39, 0.86) 58%, rgba(7, 24, 39, 0.72) 100%),
      radial-gradient(circle at 18% 80%, rgba(31, 182, 143, 0.24), transparent 32%);
  }

  .hero-panel-row {
    left: 18px;
    right: 18px;
    bottom: 24px;
    grid-template-columns: 1fr;
  }

  .hero-status {
    min-width: 0;
    width: auto;
    margin-top: 0;
    border-left: 4px solid var(--cyan);
  }

  .hero-panel-row::after {
    display: none;
  }

  .hero-metrics div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .hero-metrics div {
    border-left: 0;
  }

  .intro-grid,
  .service-grid,
  .split-section,
  .flow-list,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .split-copy h2 span {
    white-space: normal;
  }

  .intro-grid,
  .section-heading,
  .split-copy,
  .company-section > div:first-child,
  .contact-copy {
    padding-left: 0;
  }

  .strength-item {
    grid-template-columns: 1fr;
  }

  .strength-list {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .intro-label {
    min-height: auto;
    gap: 18px;
  }

  .intro-label .section-kicker {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
    left: 50%;
    top: -34px;
    transform: translateX(-50%);
  }

  .intro-tags,
  .intro-points,
  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-tags {
    padding-inline: 14px;
  }

  .intro-panel-title {
    max-width: none;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-network {
    display: none;
  }

  .hero-copy {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-tags span {
    font-size: 0.72rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-heading > .section-kicker,
  .split-copy > .section-kicker,
  .company-section > div:first-child > .section-kicker,
  .contact-copy > .section-kicker {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
    left: 50%;
    top: -76px;
    transform: translateX(-50%);
  }

  #flow .section-heading h2 span {
    white-space: normal;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-table {
    margin-top: 44px;
  }

  .intro-panel {
    padding: 24px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .strength-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .strength-item h3 {
    min-height: 0;
  }

  .strength-item span,
  .flow-list span {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .flow-list li {
    min-height: auto;
  }

  .contact-section {
    border-radius: 0;
  }

  .contact-form {
    padding-top: 20px;
  }

  .contact-flow {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Mobile layout polish: keep desktop rules intact and normalize each section on phones/tablets. */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 14px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(15, 32, 47, 0.08);
    backdrop-filter: blur(16px);
  }

  .section,
  .section-band,
  .contact-section {
    padding: 76px 20px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    padding: 112px 22px 42px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.25rem);
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .hero-tags {
    width: 100%;
    gap: 8px;
  }

  .hero-tags span {
    width: calc(50% - 4px);
  }

  .hero-actions {
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1 1 220px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    opacity: 0.28;
  }

  .hero-panel-row {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 20px 28px;
  }

  .hero-status,
  .hero-metrics div {
    min-height: 78px;
    padding: 14px 16px;
  }

  .hero-metrics div + div,
  .hero-metrics div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .intro::before,
  .intro::after,
  #service::before,
  #service::after,
  #strength::before,
  #strength::after,
  #flow::before,
  #flow::after,
  .contact-section::after {
    opacity: 0.45;
  }

  .intro-grid,
  .section-heading,
  .split-copy,
  .company-section > div:first-child,
  .company-identity,
  .contact-copy {
    padding-left: 0;
  }

  .intro-main,
  .split-copy,
  .contact-copy {
    padding-top: 0;
    text-align: center;
  }

  .intro-main::before {
    display: none;
  }

  .intro-lead-copy,
  .split-copy p,
  .contact-copy p {
    max-width: 100%;
  }

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

  .intro-panel {
    margin-top: 36px;
    transform: none;
    translate: none;
  }

  .service-grid,
  .strength-list,
  .flow-list {
    gap: 16px;
  }

  .service-card,
  .strength-item,
  .flow-list li {
    min-height: auto;
    padding: 28px 22px;
  }

  .service-card h3,
  .strength-item h3,
  .flow-list h3 {
    white-space: normal;
  }

  .company-section {
    gap: 28px;
  }

  #company.company-section > .company-identity {
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  #company .company-logo-main {
    width: min(260px, 72%) !important;
    max-height: none !important;
  }

  #company.company-section > .company-identity .company-name {
    transform: none !important;
  }

  .company-name {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    white-space: normal;
  }

  .company-section > div:first-child > p:not(.section-kicker),
  #company.company-section > .company-identity > p:not(.section-kicker) {
    max-width: 100%;
  }

  .company-table {
    width: 100%;
    margin-top: 24px !important;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .contact-section {
    gap: 34px;
  }

  #contact .contact-copy h2,
  .contact-copy p,
  .contact-flow {
    max-width: 100%;
  }

  .contact-copy h2 span {
    white-space: normal;
  }

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

  .contact-form {
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band,
  .contact-section {
    padding: 64px 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .site-nav {
    top: 66px;
    right: 12px;
    left: 12px;
  }

  .hero-copy {
    padding: 104px 18px 34px;
  }

  .page-bg-title {
    display: none !important;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.6rem);
    line-height: 1.24;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: balance;
  }

  .hero h1 span {
    white-space: normal;
  }

  .intro h2,
  .section-heading h2,
  .split-copy h2,
  .company-name,
  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1.28;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: balance;
  }

  .intro h2 span,
  .section-heading h2 span,
  .split-copy h2 span,
  .company-name span,
  .contact-copy h2 span {
    display: inline;
    white-space: normal;
  }

  .hero-tags span,
  .hero-actions .button {
    width: 100%;
  }

  .hero-panel-row {
    grid-template-columns: 1fr;
    margin-inline: 18px;
  }

  .hero-metrics div + div,
  .hero-metrics div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .intro-tags,
  .intro-points,
  .contact-flow {
    grid-template-columns: 1fr;
  }

  .intro-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 12px;
  }

  .intro-tags span {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding-inline: 6px;
  }

  .intro-panel,
  .contact-flow div,
  .modal-panel {
    padding: 24px;
  }

  .service-card,
  .strength-item,
  .flow-list li {
    padding: 26px 20px;
  }

  .service-card .card-number,
  .strength-item span,
  .flow-list span {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .company-table dd {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-form textarea {
    height: 170px;
  }

  .review-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal {
    padding: 14px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
  }
}

@media (min-width: 981px) {
  #company.company-section > div:first-child {
    isolation: isolate;
  }

  #company .company-name {
    display: inline-block;
    transform: translateX(-15px);
  }

  #company.company-section > div:first-child::after {
    display: none;
  }

  #company .company-logo-shadow {
    top: 44px;
    left: 38%;
    width: min(620px, 116%);
    opacity: 0.24;
    filter: grayscale(1) saturate(0.3) brightness(0.78);
    transform: translateX(-50%) rotate(-5deg);
  }

  #company.company-section > div:first-child .company-name,
  #company.company-section > div:first-child .section-kicker,
  #company.company-section > div:first-child > p:not(.section-kicker) {
    position: relative;
    z-index: 1;
  }

  #about .intro-panel {
    transform: translateY(-18px) !important;
  }
}

/* Final alignment tweaks */
.section-heading h2,
.contact-copy h2 {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 span,
.contact-copy h2 span {
  display: block;
}

#service .section-heading h2 {
  max-width: 920px;
}

#flow .section-heading h2 {
  max-width: 960px;
}

#contact .contact-copy h2 {
  max-width: 720px;
}

#company .company-logo-main {
  position: relative;
  z-index: 1;
  display: block;
  width: min(430px, 84%);
  height: auto;
  margin: 0 auto 18px;
}

#company.company-section > div:first-child::after,
#company .company-logo-shadow {
  display: none !important;
}

#company.company-section > div:first-child .company-name,
#company.company-section > div:first-child > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
}

@media (min-width: 981px) {
  #company.company-section > div:first-child {
    padding-top: 96px;
    transform: translateX(-58px);
  }

  #company .company-name {
    transform: none;
  }
}

/* Company logo placement */
#company.company-section > div:first-child::after,
#company .company-logo-shadow {
  display: none !important;
  content: none !important;
}

@media (min-width: 981px) {
  #company.company-section {
    align-items: start;
  }

  #company.company-section > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 96px !important;
  }

  #company .company-logo-main {
    display: block !important;
    width: min(520px, 92%) !important;
    max-height: 330px;
    height: auto !important;
    margin: 0 auto 18px !important;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  #company.company-section > div:first-child > .section-kicker {
    display: none !important;
  }
}

/* Company section final spacing */
.company-table a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 183, 195, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.company-table a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (min-width: 981px) {
  #company.company-section {
    align-items: start !important;
  }

  #company.company-section > div:first-child,
  #company .company-table {
    margin-top: 176px !important;
  }

  #company.company-section > div:first-child {
    padding-top: 0 !important;
    transform: translateX(-58px);
  }

  #company .company-table {
    margin-bottom: 0;
  }
}

/* Company page final balance */
@media (min-width: 981px) {
  #company.company-section {
    align-items: flex-start !important;
  }

  #company.company-section > .company-identity,
  #company.company-section > .company-table {
    margin-top: 220px !important;
  }

  #company.company-section > .company-identity {
    padding-top: 0 !important;
    transform: translateX(-36px) !important;
  }

  #company .company-logo-main {
    width: min(420px, 82%) !important;
    max-height: 270px !important;
    margin: 0 auto 16px !important;
    object-fit: contain !important;
  }

  #company.company-section > .company-identity .company-name {
    transform: translateX(-34px) !important;
    margin-top: 0 !important;
  }

  #company.company-section > .company-identity > p:not(.section-kicker) {
    max-width: 520px;
  }

  #company .company-table {
    margin-bottom: 0 !important;
  }

  #company .company-table div {
    padding-block: 15px !important;
  }
}

/* Align the company logo block with the first line of the company info table. */
@media (min-width: 981px) {
  #company.company-section > .company-identity {
    margin-top: 220px !important;
  }
}

/* Mobile final polish: prevent title clipping and keep label row aligned. */
@media (max-width: 640px) {
  .page-bg-title {
    display: none !important;
  }

  .hero h1,
  .intro h2,
  .section-heading h2,
  .split-copy h2,
  .company-name,
  .contact-copy h2 {
    max-width: 100% !important;
    font-size: clamp(1.85rem, 8.2vw, 2.35rem) !important;
    line-height: 1.28 !important;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: balance;
  }

  .hero h1 span,
  .intro h2 span,
  .section-heading h2 span,
  .split-copy h2 span,
  .company-name span,
  .contact-copy h2 span {
    display: inline !important;
    white-space: normal !important;
  }

  .intro-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px;
    margin: 22px 0 12px !important;
  }

  .intro-tags span {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding-inline: 6px;
  }
}

/* Mobile overflow guard: keep every section inside the viewport. */
@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .page-bg-title {
    display: none !important;
  }

  .section,
  .section-band,
  .intro,
  .hero,
  .split-section,
  .contact-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section-inner,
  .intro-grid,
  .intro-main,
  .intro-panel,
  .section-heading,
  .service-grid,
  .split-copy,
  .strength-list,
  .flow-list,
  .company-section,
  .contact-section,
  .contact-copy,
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero h1,
  .intro h2,
  .section-heading h2,
  .split-copy h2,
  .company-name,
  .contact-copy h2,
  .intro-panel-title {
    min-width: 0 !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    line-break: strict;
    text-wrap: balance;
  }

  .intro-lead-copy,
  .intro-panel p,
  .split-copy p,
  .service-card p,
  .strength-item p,
  .flow-list p,
  .company-section p,
  .contact-copy p,
  .contact-flow small,
  .contact-flow strong {
    max-width: 100% !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band,
  .contact-section {
    padding-inline: 18px !important;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 7.4vw, 2.18rem) !important;
    line-height: 1.3 !important;
  }

  .intro h2,
  .section-heading h2,
  .split-copy h2,
  .company-name,
  .contact-copy h2 {
    font-size: clamp(1.48rem, 6.45vw, 1.92rem) !important;
    line-height: 1.34 !important;
  }

  #flow .section-heading h2,
  #contact .contact-copy h2 {
    font-size: clamp(1.34rem, 5.8vw, 1.72rem) !important;
  }

  .intro-panel-title {
    font-size: clamp(1.06rem, 4.8vw, 1.28rem) !important;
    line-height: 1.55 !important;
  }

  .intro-tags {
    width: 100% !important;
    padding-inline: 0 !important;
  }

  .intro-tags span {
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Mobile title cleanup: remove all pale background titles and their reserved space. */
@media (max-width: 980px) {
  .page-bg-title,
  .intro-label,
  #about .section-kicker,
  #service .section-heading > .section-kicker,
  #strength .split-copy > .section-kicker,
  #flow .section-heading > .section-kicker,
  #company .section-kicker,
  #company > div:first-child > .section-kicker,
  #contact .contact-copy > .section-kicker {
    display: none !important;
  }

  .intro-main,
  .section-heading,
  .split-copy,
  .company-section > div:first-child,
  .company-identity,
  .contact-copy {
    padding-top: 0 !important;
  }

  .section-heading {
    margin-bottom: 28px !important;
  }

  .strength-list,
  .flow-list {
    padding-top: 0 !important;
  }

  .intro-panel {
    margin-top: 28px !important;
  }

  .contact-form {
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band,
  .contact-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .section-heading,
  .split-copy,
  .contact-copy {
    margin-bottom: 26px !important;
  }

  .hero-copy {
    text-align: center !important;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto !important;
    text-align: center !important;
  }

  .hero-tags,
  .hero-actions {
    justify-content: center !important;
  }

  #company.company-section > .company-identity {
    align-items: center !important;
    text-align: center !important;
  }

  #company.company-section > .company-identity .company-name {
    display: block !important;
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
    transform: none !important;
  }

  .site-footer {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center !important;
    gap: 8px 14px !important;
    padding: 12px 18px 16px !important;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-links {
    display: contents !important;
  }

  .footer-links a {
    grid-column: 2;
    justify-self: end;
    padding: 0 !important;
    text-align: right;
    white-space: nowrap;
  }

  .footer-link-button {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 2px 0 !important;
    text-align: center;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 4px 0 0 !important;
    text-align: center;
  }
}
