:root {
  --ink: #142033;
  --muted: #5d6f84;
  --line: #dbe6f1;
  --paper: #ffffff;
  --mist: #f2f7fb;
  --navy: #0f3f73;
  --blue: #1b74c9;
  --cyan: #2f95d8;
  --green: #1f9d73;
  --shadow: 0 18px 48px rgba(15, 63, 115, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.site-header::before {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 210px;
  height: 46px;
  background: url("assets/air-stage-title-transparent.png") left center / contain no-repeat;
  text-decoration: none;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.brand > * {
  display: none !important;
}


.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #8ee0bd;
}

.nav-cta {
  padding: 9px 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #2f95d8, #1b74c9);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(47, 149, 216, 0.24);
}

.nav-links .nav-cta:hover {
  color: #ffffff;
  background: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: min(820px, 100svh);
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-canvas,
.hero-media,
.hero-overlay,
.hero-grid-motion {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #061a33;
}

.hero-media {
  z-index: -4;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85");
  background-position: center right;
  background-size: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 28%, rgba(47, 149, 216, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(3, 20, 42, 0.94) 0%, rgba(8, 43, 78, 0.74) 54%, rgba(3, 20, 42, 0.36) 100%),
    linear-gradient(180deg, rgba(10, 75, 128, 0.1), rgba(3, 20, 42, 0.82));
}

.hero-grid-motion {
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
  animation: gridDrift 18s linear infinite;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(118px, 14vw, 156px) 0 120px;
}

.hero-content > * {
  animation: heroRise 720ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

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

.hero .eyebrow,
.sub-hero .eyebrow {
  color: #8ee0bd;
}

.hero h1,
.sub-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  display: grid;
  gap: 0.02em;
  width: fit-content;
  max-width: 1040px;
  padding-bottom: 18px;
  font-size: clamp(2rem, 4.25vw, 4.05rem);
  text-shadow: 0 0 28px rgba(47, 149, 216, 0.22);
}

.hero h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(360px, 60%);
  height: 3px;
  background: linear-gradient(90deg, var(--green), rgba(47, 149, 216, 0));
  content: "";
  animation: scanLine 2.8s ease-in-out infinite;
}

.hero h1 span {
  display: block;
  animation: textFocus 900ms ease both;
}

.hero h1 span:first-child {
  white-space: nowrap;
}

.hero h1 span:nth-child(2) {
  animation-delay: 160ms;
}

.hero-lead {
  position: relative;
  max-width: 700px;
  margin: 28px 0 0;
  padding: 18px 20px 18px 22px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border-left: 3px solid rgba(142, 224, 189, 0.8);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(8px);
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-lead::before {
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(142, 224, 189, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  content: "IT STRATEGY";
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #20b6a0);
  box-shadow: 0 14px 34px rgba(31, 157, 115, 0.25);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.button.light {
  color: var(--navy);
  background: #ffffff;
}

.button.secondary.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  left: clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(47, 149, 216, 0.16);
  border: 1px solid rgba(142, 224, 189, 0.28);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(47, 149, 216, 0.12);
  backdrop-filter: blur(12px);
}

.hero-status {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 86px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #8ee0bd;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(142, 224, 189, 0.14);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 112px) 0;
}

.band {
  background: var(--mist);
}

.intro {
  position: relative;
  overflow: hidden;
}

.intro::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.intro::after {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 18px;
  color: rgba(15, 63, 115, 0.05);
  font-size: clamp(3.6rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
  content: "ONE STOP";
}

.intro-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(219, 230, 241, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.intro-main {
  position: relative;
  padding-left: 24px;
}

.intro-main::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 999px;
  content: "";
}

.intro-side p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.capability-strip span {
  min-height: 42px;
  padding: 9px 11px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.split p:last-child,
.company-copy p,
.recruit p,
.contact p,
.sub-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading.horizontal {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.services {
  position: relative;
  overflow: hidden;
  background: #f7fafc;
}

.services::before {
  position: absolute;
  top: 56px;
  right: -5vw;
  color: rgba(15, 63, 115, 0.05);
  font-size: clamp(5rem, 18vw, 17rem);
  font-weight: 900;
  line-height: 1;
  content: "SERVICE";
  pointer-events: none;
}

.services-editorial-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(36px, 7vw, 80px);
}

.services-editorial-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-ja {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.services-editorial-head h2 {
  font-size: clamp(3.8rem, 12vw, 10.5rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.editorial-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -34px 0 clamp(46px, 7vw, 86px);
  color: var(--navy);
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.editorial-line span {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

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

.service-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease, border-color 260ms ease;
}

.service-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-row.is-active {
  border-color: rgba(31, 157, 115, 0.42);
}

.service-row.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.82fr);
}

.service-row.reverse .service-copy {
  grid-column: 2;
}

.service-row.reverse .service-visual {
  grid-column: 1;
  grid-row: 1;
}

.service-copy {
  position: relative;
  min-height: 240px;
  padding: 24px 0 24px 44px;
}

.service-number {
  position: absolute;
  top: 30px;
  left: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  writing-mode: vertical-rl;
}

.service-copy::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 20px;
  width: 1px;
  background: var(--line);
  content: "";
  transition: background-color 240ms ease, transform 240ms ease;
}

.service-row:hover .service-copy::before,
.service-row.is-active .service-copy::before {
  background: var(--green);
  transform: scaleY(1.08);
}

.service-copy .service-kicker {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 3.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-copy h3 {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-copy p:not(.service-kicker) {
  max-width: 520px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 260ms ease, margin 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.service-meta span {
  padding: 5px 9px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.service-row:hover .service-meta,
.service-row.is-active .service-meta {
  max-height: 80px;
  margin: 0 0 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 270px;
  background: #d8dee5;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(15, 63, 115, 0.18);
}

.service-visual::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: clamp(270px, 32vw, 390px);
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms ease, filter 360ms ease;
}

.service-visual:hover img {
  transform: scale(1.045);
}

.service-row.is-active .service-visual img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.service-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-body {
  padding: clamp(22px, 4vw, 34px);
}

.service-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card.accent .service-kicker {
  color: var(--blue);
}

h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
}

.service-body p:not(.service-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-body ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}

.service-body li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.text-link:hover {
  color: var(--green);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.strengths {
  position: relative;
  overflow: hidden;
}

.strengths::before {
  position: absolute;
  top: 28px;
  left: -3vw;
  color: rgba(15, 63, 115, 0.05);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 0.85;
  content: "TRUST";
}

.strengths-panel {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid rgba(219, 230, 241, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.1);
}

.strengths-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
}

.strengths-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.strengths-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.metric-grid.enhanced {
  margin-top: clamp(28px, 5vw, 46px);
}

.metric-grid article {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.metric-grid article::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(27, 116, 201, 0.06);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-ghost);
}

.metric-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 157, 115, 0.46);
  box-shadow: 0 20px 42px rgba(15, 63, 115, 0.12);
}

.metric-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.metric-wide strong {
  white-space: nowrap;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.metric-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.metric-grid .metric-label {
  margin-top: 0;
  color: var(--green);
}

.domain-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.domain-flow span {
  position: relative;
  min-height: 48px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.domain-flow span::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 22px;
  height: 1px;
  background: var(--green);
  content: "";
}

.domain-flow span:last-child::after {
  display: none;
}

.trust-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 63, 115, 0.96), rgba(16, 88, 151, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.34), transparent 34%);
  border: 1px solid rgba(142, 224, 189, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(15, 63, 115, 0.18);
}

.trust-summary::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.trust-summary > * {
  position: relative;
  z-index: 1;
}

.trust-summary span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-summary strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  line-height: 1.25;
}

.trust-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.reason-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.1), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reason-grid article::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 999px;
  content: "";
}

.reason-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 157, 115, 0.42);
  box-shadow: 0 24px 58px rgba(15, 63, 115, 0.12);
}

.reason-number {
  position: absolute;
  right: 18px;
  bottom: -22px;
  color: rgba(27, 116, 201, 0.06);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.reason-grid .metric-label {
  margin: 0 0 16px;
}

.reason-grid h3 {
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.reason-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.reason-grid p:not(.metric-label) {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.company {
  position: relative;
  overflow: hidden;
}

.company::before {
  position: absolute;
  top: 24px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 900;
  line-height: 1;
  content: "PROFILE";
  pointer-events: none;
}

.company-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.company-copy p {
  margin-top: 22px;
}

.inline-button {
  width: fit-content;
  margin-top: 26px;
}

.policy-link {
  margin-top: 12px;
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  font-weight: 700;
}

.message-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.message-section::before {
  position: absolute;
  top: 34px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 900;
  line-height: 1;
  content: "MESSAGE";
  pointer-events: none;
}

.message-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.message-copy {
  position: relative;
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.1);
}

.message-copy::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 999px;
  content: "";
}

.message-copy h2 {
  max-width: 620px;
}

.message-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.message-copy .message-lead {
  margin-top: 26px;
  padding: 18px 20px 18px 22px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(31, 157, 115, 0.11), rgba(47, 149, 216, 0.07));
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 900;
  line-height: 1.55;
}

.message-copy .message-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 30px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.message-sign::before {
  width: min(180px, 32%);
  height: 1px;
  background: var(--line);
  content: "";
}

.message-visual {
  position: relative;
  min-height: 520px;
}

.message-visual::before {
  position: absolute;
  inset: 44px 18px 54px 58px;
  background:
    radial-gradient(circle at 24% 22%, rgba(31, 157, 115, 0.18), transparent 17%),
    linear-gradient(rgba(15, 63, 115, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.07) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  border: 1px solid rgba(219, 230, 241, 0.92);
  border-radius: 8px;
  content: "";
}

.message-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #d8e5f0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.18);
}

.message-photo::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 900ms ease;
}

.message-photo:hover img {
  transform: scale(1.045);
}

.message-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(15, 63, 115, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.main-message-photo {
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 330px;
}

.sub-message-photo {
  bottom: 0;
  left: 0;
  width: min(78%, 340px);
  height: 250px;
}

.company-profile-section {
  position: relative;
  overflow: hidden;
}

.company-profile-table {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.company-card {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 38%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.12);
}

.company-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(31, 157, 115, 0.28);
  border-radius: 50%;
  content: "";
}

.company-image {
  display: block;
  overflow: hidden;
  height: clamp(190px, 24vw, 280px);
  margin: 0 0 24px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 63, 115, 0.14);
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.company-image:hover img {
  transform: scale(1.045);
}

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

.company-card-head span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card-head strong {
  color: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.company-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.company-badges span {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.recruit-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.recruit-layout > div {
  max-width: 720px;
}

.recruit p {
  margin-top: 18px;
}

.recruit {
  position: relative;
  overflow: hidden;
}

.recruit::before {
  position: absolute;
  top: 34px;
  left: -2vw;
  color: rgba(15, 63, 115, 0.05);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  content: "JOIN US";
}

.recruit-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.09);
}

.recruit-copy p {
  max-width: 700px;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.recruit-tags span {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.recruit-image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 330px;
  border-radius: 8px;
  box-shadow: 0 26px 62px rgba(15, 63, 115, 0.16);
}

.recruit-image::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 6px;
  content: "";
}

.recruit-image::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(15, 63, 115, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  content: "Careers at AIR STAGE";
  backdrop-filter: blur(12px);
}

.recruit-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 900ms ease;
}

.recruit-image:hover img {
  transform: scale(1.045);
}

.recruit-page-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100svh - 76px));
  color: #ffffff;
  background: #061a33;
  isolation: isolate;
}

.recruit-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 20, 42, 0.96), rgba(8, 43, 78, 0.76) 55%, rgba(3, 20, 42, 0.46)),
    radial-gradient(circle at 76% 24%, rgba(31, 157, 115, 0.25), transparent 30%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.recruit-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  animation: gridDrift 18s linear infinite;
}

.recruit-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  min-height: min(760px, calc(100svh - 76px));
  padding: clamp(76px, 10vw, 120px) 0 96px;
}

.recruit-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.98;
}

.recruit-hero-copy h1 span {
  display: block;
}

.recruit-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  font-weight: 700;
}

.recruit-hero-tags,
.recruit-tech-line,
.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruit-hero-tags {
  margin-top: 28px;
}

.recruit-hero-tags span,
.recruit-tech-line span {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.recruit-hero-tags span {
  color: #ffffff;
  background: rgba(47, 149, 216, 0.18);
  border: 1px solid rgba(142, 224, 189, 0.28);
}

.recruit-tech-line {
  margin: 12px 0 32px;
}

.recruit-tech-line span {
  color: #8ee0bd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.recruit-hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.recruit-hero-panel::after {
  position: absolute;
  right: -20px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  content: "AI";
}

.recruit-hero-panel span {
  color: #8ee0bd;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recruit-hero-panel strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.recruit-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.recruit-message,
.ai-culture,
.recruit-projects,
.member-section,
.jobs-section {
  position: relative;
  overflow: hidden;
}

.recruit-message::before,
.ai-culture::before,
.recruit-projects::before,
.jobs-section::before {
  position: absolute;
  top: 34px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.recruit-message::before {
  content: "SHIFT";
}

.ai-culture::before {
  content: "AI NATIVE";
}

.recruit-projects::before {
  content: "PROJECT";
}

.jobs-section::before {
  content: "JOBS";
}

.recruit-message-layout,
.ai-culture-layout,
.work-style-layout,
.member-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.message-block,
.ai-task-grid,
.work-style-list,
.member-tags {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.88)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(15, 63, 115, 0.09);
}

.message-block p,
.ai-culture-copy p,
.work-style-layout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.recruit-card-grid,
.tech-stack-grid,
.project-grid,
.jobs-grid {
  display: grid;
  gap: 14px;
}

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

.recruit-card-grid article,
.tech-stack-grid article,
.project-grid article,
.jobs-grid article {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.recruit-card-grid article:hover,
.tech-stack-grid article:hover,
.project-grid article:hover,
.jobs-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 157, 115, 0.42);
  box-shadow: 0 24px 58px rgba(15, 63, 115, 0.12);
}

.recruit-card-grid span,
.project-grid span,
.tech-stack-grid span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recruit-card-grid h3,
.project-grid h3,
.jobs-grid h3 {
  margin-top: 12px;
  color: var(--navy);
}

.recruit-card-grid p,
.project-grid p,
.jobs-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.ai-culture-copy {
  position: relative;
  z-index: 1;
}

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

.ai-task-grid span,
.member-tags span,
.work-style-list li {
  padding: 11px 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

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

.tech-stack-grid article {
  min-height: 132px;
}

.tech-stack-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.4;
}

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

.project-grid article {
  min-height: 250px;
}

.work-style-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  list-style: none;
}

.member-tags {
  align-content: start;
}

.recruit-data-grid article {
  min-height: 160px;
}

.recruit-data-grid strong {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

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

.jobs-grid article {
  min-height: 160px;
}

.recruit-entry {
  background:
    linear-gradient(135deg, #0f3f73 0%, #145f9e 55%, #1f9d73 140%);
}

.recruit-entry-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.recruit-entry-copy p {
  max-width: 680px;
}

.recruit-entry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.14), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(3, 20, 42, 0.22);
}

.recruit-entry-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.recruit-entry-form input,
.recruit-entry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.recruit-entry-form textarea {
  resize: vertical;
}

.recruit-entry-form input:focus,
.recruit-entry-form textarea:focus {
  outline: 3px solid rgba(31, 157, 115, 0.22);
  border-color: var(--green);
  background: #ffffff;
}

.recruit-entry-form .full {
  width: 100%;
}

.news {
  position: relative;
  overflow: hidden;
}

.news::before {
  position: absolute;
  top: 24px;
  right: -2vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 900;
  line-height: 1;
  content: "NEWS";
}

.news-heading {
  position: relative;
  z-index: 1;
}

.news-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(15, 63, 115, 0.08);
}

.news-list .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 44px;
  gap: clamp(16px, 4vw, 34px);
  align-items: center;
  min-height: 104px;
  padding: 22px 24px;
  background: #ffffff;
  transition: background-color 220ms ease, transform 220ms ease;
}

.news-list .news-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--green);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.news-list .news-item:hover {
  background: #f8fbfd;
}

.news-list .news-item:hover::before {
  opacity: 1;
}

.news-list time {
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.news-list time span {
  display: block;
  min-height: auto;
  margin-bottom: 6px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 0;
  font-size: 0.78rem;
  justify-content: flex-start;
}

.news-body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 12px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.news-list h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.news-item > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.news-item:hover > a {
  color: #ffffff;
  background: var(--green);
  transform: translateX(4px);
}

.contact {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f3f73 0%, #165a9f 100%);
}

.contact::before {
  position: absolute;
  top: -36px;
  right: -3vw;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 1;
  content: "CONTACT";
}

.contact .eyebrow {
  color: #8ee0bd;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.contact-feature {
  padding: clamp(26px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.contact-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-route span {
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-button {
  min-width: 140px;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.service-hero.infrastructure-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.service-hero.development-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.service-hero.ai-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("assets/ai-integration-robot.png") center / cover;
}

.service-hero.soc-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.company-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.72)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.policy-hero .sub-hero-layout {
  min-height: 390px;
}

.policy-hero .sub-hero-layout > div {
  max-width: 860px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.policy-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.policy-hero p:not(.eyebrow) {
  max-width: 680px;
}

.sub-hero-layout {
  min-height: 560px;
  display: grid;
  align-items: center;
}

.sub-hero p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.role-grid article {
  min-height: 180px;
}

.role-grid strong {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.detail-grid article {
  padding: clamp(24px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.infra-overview {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.infra-overview::before {
  position: absolute;
  top: 34px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "INFRA";
  pointer-events: none;
}

.development-overview::before {
  content: "APP";
}

.soc-overview::before {
  content: "SOC";
}

.ai-overview::before {
  content: "AI";
}

.infra-overview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.infra-overview-copy {
  max-width: 720px;
}

.infra-overview-copy h2 {
  max-width: 680px;
}

.single-line-heading {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
}

.infra-overview-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.infra-overview-copy .infra-lead {
  position: relative;
  margin-top: 26px;
  padding: 18px 20px 18px 22px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(31, 157, 115, 0.1), rgba(47, 149, 216, 0.06));
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 900;
  line-height: 1.55;
}

.infra-image-stack {
  position: relative;
  min-height: 520px;
}

.infra-image-stack::before {
  position: absolute;
  inset: 38px 18px 52px 62px;
  background:
    linear-gradient(rgba(15, 63, 115, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid rgba(219, 230, 241, 0.9);
  border-radius: 8px;
  content: "";
}

.development-image-stack::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(31, 157, 115, 0.18), transparent 16%),
    linear-gradient(rgba(15, 63, 115, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.07) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.soc-image-stack::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(31, 157, 115, 0.18), transparent 18%),
    linear-gradient(rgba(15, 63, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.ai-image-stack::before {
  background:
    radial-gradient(circle at 28% 20%, rgba(47, 149, 216, 0.2), transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(31, 157, 115, 0.16), transparent 20%),
    linear-gradient(rgba(15, 63, 115, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 30px 30px, 30px 30px;
}

.infra-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #d8e5f0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.18);
}

.infra-photo::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.infra-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 900ms ease;
}

.infra-photo:hover img {
  transform: scale(1.045);
}

.infra-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(15, 63, 115, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.primary-photo {
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 340px;
}

.secondary-photo {
  bottom: 0;
  left: 0;
  width: min(78%, 330px);
  height: 240px;
}

.infra-approach-section {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  background: #ffffff;
}

.infra-approach-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.88)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.13), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.11);
}

.infra-approach-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, transparent 100%);
  pointer-events: none;
}

.infra-approach-card::after {
  position: absolute;
  right: -18px;
  bottom: -42px;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
  content: "OPERATE";
  pointer-events: none;
}

.development-approach-card::after {
  content: "BUILD";
}

.soc-approach-card::after {
  content: "DEFEND";
}

.ai-approach-card::after {
  content: "AGENT";
}

.development-approach-card h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.soc-approach-card h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
}

.ai-approach-card h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.1rem);
}

.infra-approach-card > * {
  position: relative;
  z-index: 1;
}

.infra-approach-card h2 {
  width: auto;
  max-width: 920px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.08;
  white-space: normal;
}

.approach-highlight {
  position: relative;
  margin: 0;
  padding: 20px 22px 20px 26px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(31, 157, 115, 0.12), rgba(47, 149, 216, 0.08));
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.45;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.approach-highlight::after {
  position: absolute;
  right: 18px;
  bottom: -9px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 149, 216, 0), var(--green));
  border-radius: 999px;
  content: "";
  animation: scanLine 2.8s ease-in-out infinite;
}

.approach-copy {
  grid-column: auto;
  width: min(100%, 760px);
  margin: -6px 0 0 auto;
  padding-left: 26px;
  color: var(--muted);
  border-left: 1px solid rgba(31, 157, 115, 0.34);
  font-size: 1.02rem;
  font-weight: 700;
}

.infra-approach-card .approach-highlight {
  width: min(100%, 760px);
  margin-left: auto;
}

.certification-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.certification-section::before {
  position: absolute;
  top: 34px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "CERTIFIED";
  pointer-events: none;
}

.certification-section .section-inner {
  position: relative;
  z-index: 1;
}

.certification-section .section-heading.horizontal > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.certification-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: 34px 0 14px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 63, 115, 0.96), rgba(16, 88, 151, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.32), transparent 34%);
  border: 1px solid rgba(142, 224, 189, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(15, 63, 115, 0.16);
}

.certification-lead span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certification-lead strong {
  display: block;
  max-width: 620px;
  font-size: clamp(1.28rem, 2.6vw, 2.15rem);
  line-height: 1.3;
}

.certification-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.cert-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top left, rgba(47, 149, 216, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.cert-pyramid {
  display: grid;
  gap: 7px;
  justify-items: center;
}

.cert-pyramid span {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.12);
}

.tier-ss {
  width: 32%;
  background: #0a2748;
}

.tier-s {
  width: 46%;
  background: #0f3f73;
}

.tier-a {
  width: 62%;
  background: #165a9f;
}

.tier-b {
  width: 78%;
  background: #1b74c9;
}

.tier-c {
  width: 94%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.cert-visual-copy span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cert-visual-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.cert-visual-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.cert-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.1), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cert-card::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 999px;
  content: "";
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 157, 115, 0.42);
  box-shadow: 0 24px 58px rgba(15, 63, 115, 0.12);
}

.cert-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cert-card-head span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cert-card-head strong {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cert-card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.1rem;
}

.cert-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cert-bar {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(219, 230, 241, 0.9);
  border-radius: 999px;
}

.cert-bar span {
  display: block;
  width: var(--rate);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: inherit;
}

.cert-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cert-card li {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.cert-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.cert-ss .cert-card-head strong,
.cert-s .cert-card-head strong {
  color: #0b3d70;
}

.infra-capabilities {
  position: relative;
  overflow: hidden;
}

.development-capabilities::before {
  position: absolute;
  top: 44px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "STACK";
  pointer-events: none;
}

.soc-capabilities::before {
  position: absolute;
  top: 44px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "THREAT";
  pointer-events: none;
}

.ai-capabilities::before {
  position: absolute;
  top: 44px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "AUTOMATE";
  pointer-events: none;
}

.infra-capabilities .section-heading.horizontal > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.infra-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.infra-scope-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.infra-scope-grid article::after {
  position: absolute;
  right: -14px;
  bottom: -30px;
  color: rgba(27, 116, 201, 0.06);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-ghost);
}

.infra-scope-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 157, 115, 0.46);
  box-shadow: 0 24px 58px rgba(15, 63, 115, 0.12);
}

.infra-scope-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.infra-scope-grid h3 {
  color: var(--navy);
}

.infra-scope-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.soc-deep-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: 34px 0 14px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 63, 115, 0.96), rgba(16, 88, 151, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.32), transparent 34%);
  border: 1px solid rgba(142, 224, 189, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(15, 63, 115, 0.16);
}

.soc-deep-lead span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.soc-deep-lead strong {
  display: block;
  max-width: 640px;
  font-size: clamp(1.28rem, 2.6vw, 2.15rem);
  line-height: 1.3;
}

.soc-deep-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.soc-scope-grid article {
  min-height: 420px;
}

.soc-scope-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.55;
}

.soc-scope-grid ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.soc-scope-grid li {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.development-deep-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: 34px 0 14px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 63, 115, 0.96), rgba(16, 88, 151, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.32), transparent 34%);
  border: 1px solid rgba(142, 224, 189, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(15, 63, 115, 0.16);
}

.development-deep-lead span,
.app-visual-copy span {
  display: inline-flex;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.development-deep-lead span {
  margin-bottom: 12px;
  color: #8ee0bd;
}

.development-deep-lead strong {
  display: block;
  max-width: 640px;
  font-size: clamp(1.28rem, 2.6vw, 2.15rem);
  line-height: 1.3;
}

.development-deep-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.development-architecture-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top left, rgba(47, 149, 216, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.app-architecture-map {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  background:
    linear-gradient(rgba(15, 63, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.app-architecture-map::before,
.app-architecture-map::after {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(27, 116, 201, 0.2);
  border-radius: 50%;
  content: "";
}

.app-architecture-map::after {
  inset: 86px;
  border-color: rgba(31, 157, 115, 0.3);
}

.app-architecture-map strong {
  position: relative;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  font-size: 0.98rem;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 63, 115, 0.18);
}

.app-layer {
  position: absolute;
  min-width: 112px;
  padding: 9px 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.layer-ui {
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.layer-api {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.layer-ai {
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.layer-cloud {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.app-visual-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.app-visual-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.development-scope-grid article {
  min-height: 420px;
}

.dev-card-illustration {
  position: relative;
  z-index: 1;
  height: 118px;
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(47, 149, 216, 0.08), rgba(31, 157, 115, 0.08));
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dev-card-illustration::before,
.dev-card-illustration::after,
.dev-card-illustration i {
  position: absolute;
  display: block;
  content: "";
}

.dev-card-web::before {
  inset: 22px 28px;
  background: #ffffff;
  border: 2px solid rgba(27, 116, 201, 0.28);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(15, 63, 115, 0.12);
}

.dev-card-web::after {
  top: 38px;
  left: 48px;
  width: 62%;
  height: 2px;
  background: rgba(27, 116, 201, 0.22);
  box-shadow: 0 18px 0 rgba(31, 157, 115, 0.34), 0 36px 0 rgba(27, 116, 201, 0.15);
}

.dev-card-web i {
  bottom: 27px;
  left: 48px;
  width: 44px;
  height: 18px;
  background: linear-gradient(135deg, var(--green), #6bc4ff);
  border-radius: 999px;
}

.dev-card-backend::before {
  top: 25px;
  left: 50%;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(15, 63, 115, 0.16);
  transform: translateX(-50%);
}

.dev-card-backend i {
  width: 54px;
  height: 30px;
  background: #ffffff;
  border: 1px solid rgba(27, 116, 201, 0.22);
  border-radius: 8px;
}

.dev-card-backend i:nth-child(1) {
  top: 16px;
  left: 22px;
}

.dev-card-backend i:nth-child(2) {
  right: 22px;
  bottom: 18px;
}

.dev-card-backend i:nth-child(3) {
  bottom: 16px;
  left: 28px;
  width: 66px;
}

.dev-card-ai::before {
  inset: 26px 42px;
  background: radial-gradient(circle, rgba(31, 157, 115, 0.7) 0 5px, transparent 6px);
  background-size: 34px 24px;
}

.dev-card-ai::after {
  top: 52px;
  left: 50%;
  width: 94px;
  height: 46px;
  border: 2px solid rgba(27, 116, 201, 0.3);
  border-top: 0;
  border-radius: 0 0 48px 48px;
  transform: translateX(-50%);
}

.dev-card-ai i {
  top: 24px;
  left: 50%;
  width: 78px;
  height: 54px;
  background: linear-gradient(135deg, rgba(27, 116, 201, 0.96), rgba(31, 157, 115, 0.88));
  border-radius: 26px 26px 18px 18px;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(15, 63, 115, 0.16);
}

.dev-card-cloud::before {
  top: 34px;
  left: 50%;
  width: 138px;
  height: 54px;
  background: #ffffff;
  border: 2px solid rgba(27, 116, 201, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(15, 63, 115, 0.12);
  transform: translateX(-50%);
}

.dev-card-cloud::after {
  top: 58px;
  left: 50%;
  width: 120px;
  height: 2px;
  background: rgba(31, 157, 115, 0.42);
  box-shadow: 0 18px 0 rgba(27, 116, 201, 0.24);
  transform: translateX(-50%);
}

.dev-card-cloud i {
  bottom: 20px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--green), #6bc4ff);
  border-radius: 7px;
}

.dev-card-cloud i:nth-child(1) {
  left: calc(50% - 58px);
}

.dev-card-cloud i:nth-child(2) {
  left: calc(50% - 13px);
}

.dev-card-cloud i:nth-child(3) {
  left: calc(50% + 32px);
}

.development-scope-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.55;
}

.development-scope-grid ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.development-scope-grid li {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.ai-deep-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: 34px 0 14px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 20%, rgba(142, 224, 189, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(8, 43, 78, 0.98), rgba(15, 63, 115, 0.92));
  border: 1px solid rgba(142, 224, 189, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(15, 63, 115, 0.16);
}

.ai-deep-lead span,
.ai-visual-copy span {
  display: inline-flex;
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-deep-lead span {
  margin-bottom: 12px;
}

.ai-deep-lead strong {
  display: block;
  max-width: 650px;
  font-size: clamp(1.28rem, 2.6vw, 2.15rem);
  line-height: 1.32;
}

.ai-deep-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.ai-platform-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 252, 0.91)),
    radial-gradient(circle at top left, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.ai-orchestration-map {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 63, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(31, 157, 115, 0.12), transparent 42%);
  background-size: 30px 30px, 30px 30px, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ai-orchestration-map::before,
.ai-orchestration-map::after {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(27, 116, 201, 0.2);
  border-radius: 50%;
  content: "";
}

.ai-orchestration-map::after {
  inset: 84px;
  border-color: rgba(31, 157, 115, 0.32);
  animation: spinSlow 18s linear infinite;
}

.ai-orchestration-map strong {
  position: relative;
  z-index: 2;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 63, 115, 0.2);
}

.ai-node {
  position: absolute;
  z-index: 2;
  min-width: 118px;
  padding: 9px 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.node-llm {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.node-rag {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.node-agent {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.node-tool {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.ai-visual-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.ai-visual-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.ai-scope-grid article {
  min-height: 520px;
}

.ai-scope-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ai-scope-grid ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ai-scope-grid li {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.ai-card-illustration {
  position: relative;
  z-index: 1;
  height: 118px;
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(27, 116, 201, 0.08), rgba(31, 157, 115, 0.09));
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ai-card-illustration::before,
.ai-card-illustration::after,
.ai-card-illustration i {
  position: absolute;
  display: block;
  content: "";
}

.ai-card-llm i {
  top: 50%;
  width: 56px;
  height: 42px;
  background: #ffffff;
  border: 1px solid rgba(27, 116, 201, 0.24);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.ai-card-llm i:nth-child(1) {
  left: 26px;
}

.ai-card-llm i:nth-child(2) {
  left: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translate(-50%, -50%);
}

.ai-card-llm i:nth-child(3) {
  right: 26px;
}

.ai-card-llm::after {
  top: 50%;
  left: 72px;
  right: 72px;
  height: 2px;
  background: rgba(31, 157, 115, 0.42);
}

.ai-card-rag::before {
  inset: 24px 34px;
  background: #ffffff;
  border: 1px solid rgba(27, 116, 201, 0.24);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.ai-card-rag::after {
  top: 44px;
  left: 54px;
  width: 56%;
  height: 2px;
  background: rgba(27, 116, 201, 0.24);
  box-shadow: 0 18px 0 rgba(27, 116, 201, 0.18), 0 36px 0 rgba(31, 157, 115, 0.34);
}

.ai-card-rag i {
  right: 42px;
  bottom: 27px;
  width: 34px;
  height: 34px;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.ai-card-rag i::after {
  position: absolute;
  right: -11px;
  bottom: -6px;
  width: 16px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
  transform: rotate(45deg);
  content: "";
}

.ai-card-agent::before {
  top: 26px;
  left: 50%;
  width: 76px;
  height: 58px;
  background: linear-gradient(135deg, rgba(27, 116, 201, 0.96), rgba(31, 157, 115, 0.88));
  border-radius: 24px 24px 18px 18px;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(15, 63, 115, 0.16);
}

.ai-card-agent::after {
  right: 35px;
  bottom: 26px;
  left: 35px;
  height: 2px;
  background: rgba(27, 116, 201, 0.2);
  box-shadow: 0 -28px 0 rgba(31, 157, 115, 0.24);
}

.ai-card-agent i {
  bottom: 19px;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: 1px solid rgba(27, 116, 201, 0.24);
  border-radius: 50%;
}

.ai-card-agent i:nth-child(1) {
  left: 32px;
}

.ai-card-agent i:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}

.ai-card-agent i:nth-child(3) {
  right: 32px;
}

.ai-card-tool::before {
  inset: 32px 28px;
  border: 2px dashed rgba(27, 116, 201, 0.26);
  border-radius: 999px;
}

.ai-card-tool i {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid rgba(27, 116, 201, 0.24);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.ai-card-tool i:nth-child(1) {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.ai-card-tool i:nth-child(2) {
  bottom: 24px;
  left: 38px;
  background: linear-gradient(135deg, var(--blue), #6bc4ff);
}

.ai-card-tool i:nth-child(3) {
  right: 38px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--green), #6bc4ff);
}

.soc-scope-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top left, rgba(47, 149, 216, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.soc-radar {
  position: relative;
  min-height: 300px;
  background:
    radial-gradient(circle, transparent 0 22%, rgba(47, 149, 216, 0.12) 23% 24%, transparent 25% 43%, rgba(47, 149, 216, 0.12) 44% 45%, transparent 46%),
    linear-gradient(rgba(15, 63, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.soc-radar::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(47, 149, 216, 0));
  content: "";
  transform-origin: left center;
  animation: radarSweep 5s linear infinite;
}

.radar-core,
.radar-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.radar-core {
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(15, 63, 115, 0.18);
}

.radar-node {
  min-width: 92px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.node-endpoint {
  top: 26px;
  left: 24px;
}

.node-cloud {
  top: 34px;
  right: 28px;
}

.node-network {
  right: 18px;
  bottom: 42px;
}

.node-identity {
  bottom: 34px;
  left: 30px;
}

.soc-visual-copy span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.soc-visual-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}

.soc-visual-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.infra-lifecycle {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.infra-lifecycle::before {
  position: absolute;
  top: 40px;
  left: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "BUILD";
  pointer-events: none;
}

.development-lifecycle::before {
  content: "PRODUCT";
}

.soc-lifecycle::before {
  content: "RESPONSE";
}

.ai-lifecycle::before {
  content: "WORKFLOW";
}

.infra-lifecycle-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.lifecycle-intro {
  position: sticky;
  top: 104px;
}

.lifecycle-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.lifecycle-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.life-node {
  position: relative;
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 14px 10px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px;
}

.life-node::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  content: "";
}

.life-node span,
.life-node strong {
  position: relative;
  z-index: 1;
}

.life-node span {
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
}

.life-node strong {
  margin-top: -8px;
  font-size: 1rem;
}

.build-node {
  background: linear-gradient(135deg, #165a9f, #1b74c9);
}

.operate-node {
  background: linear-gradient(135deg, #1b74c9, var(--green));
}

.life-connector {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.soc-flow-visual {
  display: grid;
  place-items: center;
  margin-top: 28px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.flow-ring {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(27, 116, 201, 0.28);
  border-radius: 50%;
}

.flow-ring::before {
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(31, 157, 115, 0.42);
  border-radius: 50%;
  content: "";
  animation: spinSlow 18s linear infinite;
}

.flow-ring strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  font-size: 1.45rem;
  transform: translate(-50%, -50%);
}

.flow-item {
  position: absolute;
  min-width: 92px;
  padding: 8px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 63, 115, 0.1);
}

.flow-collect {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-detect {
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}

.flow-respond {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-recover {
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
}

.infra-timeline {
  display: grid;
  gap: 14px;
}

.infra-timeline article {
  position: relative;
  padding: 24px 24px 24px 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 252, 0.92)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 38%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.detailed-timeline {
  gap: 18px;
}

.detailed-timeline article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 34px) clamp(22px, 4vw, 34px) clamp(24px, 4vw, 34px) clamp(34px, 5vw, 46px);
  overflow: hidden;
}

.detailed-timeline article::after {
  position: absolute;
  right: -18px;
  bottom: -30px;
  color: rgba(27, 116, 201, 0.06);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-step);
}

.infra-timeline article::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 16px;
  width: 3px;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 999px;
  content: "";
}

.infra-timeline span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.infra-timeline h3 {
  margin-top: 4px;
}

.infra-timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.detailed-timeline h3 {
  max-width: 680px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.34;
}

.detailed-timeline strong {
  display: block;
  max-width: 660px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}

.detailed-timeline p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-top: 14px;
  font-weight: 700;
}

.detailed-timeline ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detailed-timeline li {
  padding: 7px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.contact-form-section {
  background: var(--mist);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 104px;
}

.form-intro p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 157, 115, 0.22);
  border-color: var(--green);
  background: #ffffff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions p {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(8, 43, 78, 0.94), rgba(8, 43, 78, 0.66)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=85") center / cover;
}

.gallery-hero-layout {
  position: relative;
}

.gallery-admin-trigger {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 46px);
  width: 18px;
  height: 18px;
  padding: 0;
  cursor: default;
  background: radial-gradient(circle, rgba(142, 224, 189, 0.5), rgba(142, 224, 189, 0.06) 55%, transparent 56%);
  border: 0;
  border-radius: 50%;
  opacity: 0.32;
}

.gallery-admin-trigger:focus-visible {
  outline: 3px solid rgba(142, 224, 189, 0.7);
  outline-offset: 4px;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 63, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 63, 115, 0.035) 1px, transparent 1px),
    var(--mist);
  background-size: 42px 42px;
}

.gallery-section::before {
  position: absolute;
  top: 34px;
  right: -18px;
  color: rgba(15, 63, 115, 0.035);
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 900;
  line-height: 0.8;
  content: "GALLERY";
  pointer-events: none;
}

.gallery-section .section-inner {
  position: relative;
  z-index: 1;
}

.gallery-orbit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 18px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-orbit span {
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(197, 215, 232, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 616px;
}

.gallery-card-small {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 300px;
}

.gallery-card-medium {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 300px;
}

.gallery-card-large:not(.gallery-card-small):not(.gallery-card-medium),
.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 616px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 600ms ease, filter 600ms ease;
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 43, 78, 0), rgba(8, 43, 78, 0.74)),
    linear-gradient(135deg, rgba(47, 149, 216, 0.22), transparent 42%);
  content: "";
}

.gallery-card::after {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.gallery-card:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.gallery-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8ee0bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.gallery-delete-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: none;
  padding: 8px 11px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(8, 43, 78, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.gallery-admin-active .gallery-delete-button {
  display: inline-flex;
}

.gallery-delete-button:hover {
  background: #b92d2d;
}

.gallery-admin-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 18, 36, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-admin-panel[hidden] {
  display: none;
}

.gallery-admin-dialog {
  position: relative;
  width: min(100%, 640px);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94)),
    radial-gradient(circle at top right, rgba(31, 157, 115, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(3, 18, 36, 0.34);
}

.gallery-admin-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--navy);
  cursor: pointer;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.gallery-login h2,
.gallery-upload h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
}

.gallery-login p,
.gallery-upload p {
  color: var(--muted);
}

.gallery-login-form,
.gallery-upload-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.gallery-login-form label,
.gallery-upload-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.gallery-login-form input,
.gallery-upload-form input {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy);
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.gallery-admin-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.policy-section {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.policy-section::before {
  position: absolute;
  top: 34px;
  right: -3vw;
  color: rgba(15, 63, 115, 0.045);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  content: "POLICY";
}

.policy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 0.78fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  max-width: 980px;
}

.policy-aside {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 63, 115, 0.08);
}

.policy-aside h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-aside p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.policy-document {
  padding: clamp(24px, 4vw, 40px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(15, 63, 115, 0.12);
}

.policy-document pre {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 0.98rem);
  font-weight: 600;
  line-height: 1.82;
  white-space: pre-wrap;
  word-break: break-word;
}

.site-footer {
  padding: 24px clamp(20px, 4vw, 56px);
  background: #0a2748;
  color: #ffffff;
}

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

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.14);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(3, 20, 42, 0.96);
    border: 1px solid rgba(142, 224, 189, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 104px 0 120px;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.75rem);
  }

  .split,
  .intro-panel,
  .service-grid,
  .service-row,
  .service-row.reverse,
  .company-layout,
  .company-feature,
  .message-layout,
  .contact-panel,
  .form-layout,
  .policy-layout,
  .infra-overview-layout,
  .infra-approach-card,
  .infra-lifecycle-layout,
  .recruit-hero-layout,
  .recruit-message-layout,
  .ai-culture-layout,
  .work-style-layout,
  .member-layout,
  .recruit-entry-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .form-intro,
  .policy-aside,
  .lifecycle-intro {
    position: static;
  }

  .service-row.reverse .service-copy,
  .service-row.reverse .service-visual {
    grid-column: auto;
    grid-row: auto;
  }

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

  .strengths-copy,
  .domain-flow,
  .trust-summary,
  .reason-grid,
  .five-grid,
  .tech-stack-grid,
  .project-grid,
  .jobs-grid,
  .certification-lead,
  .cert-visual,
  .certification-grid,
  .soc-deep-lead,
  .soc-scope-visual,
  .development-deep-lead,
  .development-architecture-visual,
  .ai-deep-lead,
  .ai-platform-visual,
  .infra-scope-grid,
  .gallery-grid,
  .gallery-orbit {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .infra-image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .infra-image-stack::before {
    display: none;
  }

  .infra-photo,
  .primary-photo,
  .secondary-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
  }

  .message-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .message-visual::before {
    display: none;
  }

  .message-photo,
  .main-message-photo,
  .sub-message-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
  }

  .approach-copy {
    grid-column: auto;
    margin: 0;
  }

  .recruit-layout,
  .recruit-feature,
  .footer-inner,
  .section-heading.horizontal,
  .services-editorial-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-editorial-head {
    display: flex;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .section-inner,
  .hero-content {
    width: min(100% - 32px, 1120px);
  }

  section:not(.hero) {
    padding: 62px 0;
  }

  .hero-proof {
    right: 16px;
    bottom: 20px;
    left: 16px;
  }

  .hero-status {
    right: 16px;
    bottom: 104px;
    left: 16px;
    width: fit-content;
  }

  .hero-proof span {
    font-size: 0.76rem;
  }

  .button {
    width: 100%;
  }

  .service-card img {
    height: 220px;
  }

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

  .infra-overview-copy .infra-lead {
    padding: 15px 16px;
  }

  .single-line-heading {
    white-space: normal;
  }

  .infra-approach-card h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .ai-task-grid,
  .work-style-list,
  .lifecycle-visual {
    grid-template-columns: 1fr;
  }

  .app-architecture-map {
    min-height: 260px;
  }

  .ai-orchestration-map {
    min-height: 270px;
  }

  .app-layer,
  .ai-node {
    min-width: 92px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .development-scope-grid article,
  .ai-scope-grid article {
    min-height: auto;
  }

  .life-connector {
    width: 2px;
    height: 18px;
    justify-self: center;
  }

  .recruit-hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  .company-table div,
  .news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .news-list span {
    width: fit-content;
    padding: 0 10px;
  }

  .sub-hero-layout {
    min-height: 480px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .text-link {
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
  }
}

@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;
  }

  .service-row {
    opacity: 1;
    transform: none;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 144px 72px;
  }
}

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

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(142, 224, 189, 0.14);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(142, 224, 189, 0.04);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleX(0.74);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes textFocus {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
