:root {
  color-scheme: light;
  --ink: #0f2730;
  --muted: #587078;
  --dim: #7f9399;
  --line: #d9e8ec;
  --bg: #f6fbfc;
  --paper: #ffffff;
  --soft: #eef8f7;
  --navy: #082f44;
  --teal: #27b8ca;
  --green: #20b486;
  --amber: #f3b84d;
  --line-green: #06c755;
  --shadow: 0 26px 80px rgba(13, 55, 70, 0.12);
  --hairline: rgba(7, 48, 100, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: break-word;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 10%, rgba(39, 184, 202, 0.12), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(32, 180, 134, 0.1), transparent 25%),
    linear-gradient(90deg, rgba(7, 48, 100, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 48, 100, 0.028) 1px, transparent 1px);
  background-size: auto, auto, 76px 76px, 76px 76px;
  content: "";
  transform: translate3d(calc(var(--grid-x, 0) * -1px), calc(var(--grid-y, 0) * -1px), 0);
  transition: transform 240ms ease-out;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(217, 232, 236, 0.76);
  backdrop-filter: blur(22px);
  transition: box-shadow 180ms ease, height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 42px rgba(16, 42, 51, 0.08);
}

.brand {
  width: clamp(154px, 18vw, 210px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.025);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: #38545c;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.site-nav .nav-contact {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(6, 199, 85, 0.12);
  color: #078b42;
  box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.22);
}

.site-nav .nav-contact::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(16, 42, 51, 0.1);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 5vw, 64px) 96px;
  background: #eef8f8;
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc(var(--hero-x) * -0.45), calc(var(--hero-y) * -0.24), 0) scale(1.035);
  animation: heroBreathe 18s ease-in-out infinite alternate;
  transition: transform 220ms ease-out;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(249, 253, 253, 0.98) 0%, rgba(249, 253, 253, 0.92) 38%, rgba(249, 253, 253, 0.52) 70%, rgba(249, 253, 253, 0.14) 100%),
    linear-gradient(180deg, rgba(249, 253, 253, 0.06) 0%, rgba(246, 251, 252, 0.86) 100%);
}

.motion-network {
  position: absolute;
  right: clamp(-80px, 4vw, 40px);
  top: 116px;
  z-index: 2;
  width: min(50vw, 640px);
  max-width: 680px;
  opacity: 0.52;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) * 0.32), calc(var(--hero-y) * 0.24), 0);
  transition: transform 220ms ease-out;
}

.network-path {
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 7 13;
  animation: networkFlow 6.8s linear infinite;
}

.path-b {
  animation-duration: 8.2s;
  opacity: 0.72;
}

.path-c {
  animation-duration: 7.5s;
  opacity: 0.6;
}

.network-node {
  fill: var(--amber);
  stroke: #fff;
  stroke-width: 3;
  animation: nodePulse 2.6s ease-in-out infinite;
}

.node-b {
  animation-delay: 0.45s;
}

.node-c {
  fill: var(--teal);
  animation-delay: 0.9s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  animation: heroCopyIn 700ms ease both;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  min-width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(32, 180, 134, 0.24);
  border-radius: 999px;
  background: rgba(32, 180, 134, 0.08);
  color: #11936a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.eyebrow + h1,
.section-kicker + h2 {
  margin-top: 24px;
}

.hero-inner .eyebrow + h1,
.service-hero-inner .eyebrow + h1 {
  margin-top: clamp(32px, 3vw, 42px);
}

.hero h1,
section h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 860;
  line-height: 1.12;
  text-wrap: balance;
}

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

.force-line {
  display: block;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: #38525a;
  font-size: clamp(15px, 1.65vw, 18px);
  font-weight: 680;
  line-height: 1.92;
  text-wrap: pretty;
}

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

.hero-inner .hero-actions,
.service-hero-inner .hero-actions {
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 15px;
  font-weight: 860;
  box-shadow: 0 12px 32px rgba(16, 42, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.contact-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button.line {
  border-color: var(--line-green);
  background: linear-gradient(180deg, #2bdc72, var(--line-green));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 199, 85, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.78);
}

.hero-note {
  max-width: 600px;
  margin: 14px 0 0;
  color: #587078;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(16, 42, 51, 0.12);
}

.button.primary:hover svg,
.button.primary:focus-visible svg,
.button.line:hover svg,
.button.line:focus-visible svg,
.contact-link:hover svg,
.contact-link:focus-visible svg {
  animation: arrowNudge 720ms ease infinite;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 18px 56px rgba(16, 42, 51, 0.08);
}

.hero-facts div {
  min-width: 0;
  padding: 17px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 252, 0.9));
  transition: background 180ms ease, transform 180ms ease;
}

.hero-facts div:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.capability-rail {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(217, 232, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 64px rgba(16, 42, 51, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.capability-rail::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 48, 100, 0.07), transparent 24%, transparent 74%, rgba(255, 199, 44, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.18));
  content: "";
  pointer-events: none;
}

.capability-rail p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 18px;
  color: rgba(16, 42, 51, 0.64);
  font-size: 11px;
  font-weight: 900;
}

.capability-window {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.capability-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: capabilityMove 34s linear infinite;
}

.capability-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.capability-track span::before {
  width: 6px;
  height: 6px;
  margin-right: 14px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
  box-shadow: 0 0 0 5px rgba(255, 199, 44, 0.12);
}

.hero-facts dt,
.company-list dt {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd,
.company-list dd {
  margin: 6px 0 0;
  color: var(--navy);
  font-weight: 900;
}

section {
  position: relative;
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 64px);
}

.section-band {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
}

.section-grid,
.section-split,
.company-panel,
.contact,
.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid,
.section-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.section-grid h2,
.section-split h2,
.section-head h2,
.vision h2,
.company h2,
.contact h2 {
  font-size: clamp(25px, 2.55vw, 38px);
  word-break: normal;
}

.section-grid p:not(.section-kicker),
.statement p,
.vision p:not(.section-kicker),
.company p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(14.5px, 1.35vw, 16px);
  line-height: 1.95;
  text-wrap: pretty;
}

.statement p + p {
  margin-top: 14px;
}

.section-head {
  width: min(var(--max), 100%);
  margin: 0 auto 32px;
}

.section-head h2 {
  max-width: 780px;
}

.intro .section-grid {
  grid-template-columns: 0.55fr 1.45fr;
}

.services {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6fbfc 0%, #eef8f7 100%);
}

.services::before {
  position: absolute;
  top: 88px;
  right: -120px;
  width: 560px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 48, 100, 0.18), transparent);
  content: "";
  transform: rotate(-18deg);
}

.service-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 252px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(8, 47, 68, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 254, 0.9)),
    #ffffff;
  box-shadow: 0 18px 56px rgba(16, 42, 51, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:focus-visible {
  outline: 3px solid rgba(47, 183, 199, 0.42);
  outline-offset: 4px;
}

.service-card::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--line-green), var(--teal), var(--amber));
  content: "";
  opacity: 0.82;
}

.service-card::before,
.value-item::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 183, 199, 0.12), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 560ms ease;
}

.service-card:hover,
.value-item:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 184, 202, 0.38);
  box-shadow: 0 24px 72px rgba(16, 42, 51, 0.13);
}

.service-card:hover::before,
.value-item:hover::before {
  left: 140%;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 184, 202, 0.22);
  border-radius: 999px;
  background: rgba(39, 184, 202, 0.08);
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.service-card h3,
.value-item h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: clamp(19px, 1.85vw, 25px);
  line-height: 1.28;
}

.service-card p,
.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 36px;
  margin-top: 20px;
  padding: 0 13px;
  border: 1px solid rgba(8, 47, 68, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.service-more::after {
  width: 18px;
  height: 1px;
  background: var(--line-green);
  content: "";
  transition: width 180ms ease;
}

.service-card:hover .service-more::after {
  width: 36px;
}

.service-page {
  --service-deep: var(--navy);
  --service-accent: var(--teal);
  --service-accent-2: var(--amber);
  --service-soft: #f7faf9;
  --service-wash: #eef6f4;
  --service-border: rgba(47, 183, 199, 0.34);
  --service-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.9));
}

.sales-page {
  --service-deep: #073064;
  --service-accent: #e8a326;
  --service-accent-2: #2fb7c7;
  --service-soft: #fff8ea;
  --service-wash: #f3f7fb;
  --service-border: rgba(232, 163, 38, 0.38);
  --service-card-bg: linear-gradient(180deg, rgba(255, 248, 234, 0.92), rgba(255, 255, 255, 0.98));
}

.recruiting-page {
  --service-deep: #0a3d39;
  --service-accent: #1ea778;
  --service-accent-2: #f27a5a;
  --service-soft: #ecfbf5;
  --service-wash: #f7fbf8;
  --service-border: rgba(30, 167, 120, 0.36);
  --service-card-bg: linear-gradient(180deg, rgba(236, 251, 245, 0.95), rgba(255, 255, 255, 0.98));
}

.marketing-page {
  --service-deep: #103654;
  --service-accent: #2fb7c7;
  --service-accent-2: #e8a326;
  --service-soft: #eef9fb;
  --service-wash: #f4f8fb;
  --service-border: rgba(47, 183, 199, 0.36);
  --service-card-bg: linear-gradient(180deg, rgba(238, 249, 251, 0.96), rgba(255, 255, 255, 0.98));
}

.service-hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 64px) 70px;
  background: linear-gradient(135deg, #ffffff 0%, var(--service-soft) 58%, var(--service-wash) 100%);
}

.service-hero::before {
  position: absolute;
  inset: 92px clamp(20px, 5vw, 64px) auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid var(--service-border);
  border-radius: 38px;
  content: "";
  opacity: 0.52;
  transform: rotate(12deg);
  animation: orbitSlow 18s linear infinite;
}

.service-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  content: "";
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  animation: heroCopyIn 700ms ease both;
}

.service-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--service-deep);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.08;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #34505a;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 650;
  line-height: 1.95;
}

.service-hero-sales {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 234, 0.92) 54%, rgba(243, 247, 251, 0.98)),
    linear-gradient(90deg, rgba(7, 48, 100, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 48, 100, 0.06) 1px, transparent 1px);
  background-size: auto, 74px 74px, 74px 74px;
}

.service-hero-recruiting {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 251, 245, 0.96) 55%, rgba(255, 247, 244, 0.92)),
    linear-gradient(115deg, rgba(30, 167, 120, 0.1), transparent 42%);
}

.service-hero-marketing {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 251, 0.96) 54%, rgba(247, 250, 249, 0.96)),
    linear-gradient(135deg, rgba(47, 183, 199, 0.12), transparent 36%);
}

.service-page .eyebrow,
.service-page .section-kicker {
  color: var(--service-accent);
}

.service-page .button.primary {
  border-color: var(--service-deep);
  background: var(--service-deep);
}

.service-page .button.ghost {
  border-color: var(--service-border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--service-deep);
}

.service-visual {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  min-height: 380px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--service-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64)),
    var(--service-card-bg);
  box-shadow: 0 28px 88px rgba(16, 42, 51, 0.14);
  backdrop-filter: blur(16px);
  animation: heroCopyIn 760ms ease 120ms both, visualFloat 7s ease-in-out 1s infinite alternate;
}

.service-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 48, 100, 0.08);
  border-radius: 8px;
  content: "";
}

.service-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.visual-card-main,
.visual-mini-card {
  fill: rgba(255, 255, 255, 0.94);
  stroke: var(--service-border);
  stroke-width: 2;
  filter: drop-shadow(0 22px 26px rgba(16, 42, 51, 0.13));
}

.visual-mini-card {
  animation: visualMiniFloat 5.2s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

.visual-grid-line,
.visual-stroke {
  fill: none;
  stroke: rgba(52, 80, 90, 0.32);
  stroke-linecap: round;
  stroke-width: 11;
}

.visual-accent-line {
  fill: none;
  stroke: var(--service-accent);
  stroke-dasharray: 12 14;
  stroke-linecap: round;
  stroke-width: 10;
  animation: visualDash 16s linear infinite;
}

.visual-arrow {
  fill: none;
  stroke: var(--service-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 12;
}

.visual-dot {
  fill: #ffffff;
  stroke: var(--service-accent);
  stroke-width: 7;
  animation: visualPulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.dot-two {
  animation-delay: 350ms;
}

.dot-three {
  animation-delay: 700ms;
}

.visual-sun {
  fill: var(--service-accent-2);
  filter: drop-shadow(0 12px 18px rgba(16, 42, 51, 0.16));
}

.profile-head {
  fill: var(--service-accent);
}

.profile-body,
.visual-play {
  fill: var(--service-accent-2);
  opacity: 0.92;
}

.service-detail {
  background:
    linear-gradient(180deg, #ffffff, #f7faf9);
}

.detail-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 5vw, 72px);
  margin: 0 auto;
}

.detail-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.07);
  backdrop-filter: blur(14px);
}

.detail-aside p {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-aside h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
}

.detail-body {
  display: grid;
  gap: 18px;
}

.detail-block {
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 42, 51, 0.07);
}

.detail-block h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.detail-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.detail-block p + p {
  margin-top: 14px;
}

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

.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

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

.process-list div {
  min-height: 112px;
  padding: 18px;
  background: #ffffff;
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: rgba(7, 48, 100, 0.3);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.process-list p {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.6;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--navy);
}

.service-cta h2 {
  width: min(680px, 100%);
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.9vw, 38px);
  line-height: 1.24;
  text-wrap: balance;
}

.service-cta .section-kicker + h2 {
  margin-top: 24px;
}

.lp-section {
  background: #ffffff;
}

.lp-section:nth-of-type(even) {
  background: linear-gradient(180deg, #f7faf9, #ffffff);
}

.lp-head {
  width: min(var(--max), 100%);
  margin: 0 auto 30px;
}

.lp-head h2 {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.14;
}

.lp-head .section-kicker + h2 {
  margin-top: 32px;
}

.problem-grid,
.capability-grid,
.reason-grid,
.price-grid,
.faq-list,
.support-cloud,
.flow-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.problem-item {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.06);
}

.problem-item::before {
  position: absolute;
  left: 18px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
  box-shadow: 0 0 0 7px rgba(255, 199, 44, 0.14);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.capability-card {
  min-height: 218px;
  grid-column: span 2;
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    #ffffff;
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 183, 199, 0.42);
  box-shadow: 0 28px 82px rgba(16, 42, 51, 0.12);
}

.capability-card span {
  display: block;
  margin-bottom: 24px;
  color: rgba(7, 48, 100, 0.28);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.capability-card h3,
.reason-card h3,
.price-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.24;
}

.capability-card p,
.reason-card p,
.price-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.support-section {
  background:
    linear-gradient(135deg, rgba(47, 183, 199, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(255, 199, 44, 0.11), transparent 30%),
    #f7faf9;
}

.support-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(16, 42, 51, 0.06);
}

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

.reason-card {
  min-height: 190px;
  padding: 24px;
  border-left: 4px solid var(--navy);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.075);
}

.price-section {
  background: linear-gradient(180deg, #f7faf9, #eef6f4);
}

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

.price-card {
  min-height: 204px;
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.075);
}

.price-card.featured {
  border-color: rgba(7, 48, 100, 0.34);
  background:
    linear-gradient(180deg, rgba(7, 48, 100, 0.06), transparent),
    #ffffff;
}

.price-card strong {
  display: block;
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.flow-list li {
  min-height: 124px;
  padding: 18px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.6;
}

.flow-list span {
  display: block;
  margin-bottom: 24px;
  color: rgba(7, 48, 100, 0.3);
  font-size: 30px;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(16, 42, 51, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--amber);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 26px 24px;
}

.service-page .lp-head h2,
.service-page .capability-card h3,
.service-page .reason-card h3,
.service-page .price-card h3,
.service-page .flow-list li,
.service-page .faq-list summary,
.service-page .support-cloud span {
  color: var(--service-deep);
}

.service-page .lp-section:nth-of-type(even) {
  background: linear-gradient(180deg, var(--service-wash), #ffffff);
}

.service-page .problem-item,
.service-page .capability-card,
.service-page .price-card,
.service-page .faq-list details,
.service-page .support-cloud span {
  border-color: var(--service-border);
}

.service-page .problem-item::before,
.service-page .detail-list li::before {
  background: var(--service-accent);
  box-shadow: 0 0 0 7px rgba(232, 163, 38, 0.14);
}

.service-page .capability-card {
  background: var(--service-card-bg);
}

.service-page .capability-card:hover {
  border-color: var(--service-accent);
}

.service-page .capability-card span,
.service-page .flow-list span,
.service-page .process-list span {
  color: var(--service-accent);
  opacity: 0.58;
}

.service-page .support-section,
.service-page .price-section {
  background:
    linear-gradient(135deg, var(--service-soft), transparent 52%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.82), transparent 38%),
    var(--service-wash);
}

.service-page .support-cloud span {
  background: rgba(255, 255, 255, 0.82);
}

.service-page .reason-card {
  border-left-color: var(--service-accent);
}

.service-page .price-card.featured {
  border-color: var(--service-accent);
  background:
    linear-gradient(180deg, var(--service-soft), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.service-page .price-card strong,
.service-page .faq-list summary::after {
  color: var(--service-accent);
}

.service-page .flow-list {
  border-color: var(--service-border);
  background: var(--service-border);
}

.service-page .service-cta {
  background:
    linear-gradient(135deg, var(--service-deep), #0b2d3a 76%),
    var(--service-deep);
}

.service-page .contact-link {
  border-color: rgba(255, 255, 255, 0.88);
  background: #ffffff;
  color: var(--service-deep);
}

.service-page .contact-link::after {
  background: var(--service-accent);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.service-cta .cta-actions {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.service-cta .contact-link {
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
}

.contact-link.line-link,
.service-page .contact-link.line-link {
  border-color: #06c755;
  background: #06c755;
  color: #ffffff;
}

.contact-link.mail-link,
.service-page .contact-link.mail-link {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.94);
  color: var(--service-deep, var(--navy));
}

.contact .contact-link.mail-link {
  border-color: var(--line);
  background: #ffffff;
  color: var(--navy);
}

.contact-link.line-link::after,
.service-page .contact-link.line-link::after {
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.2);
}

.contact-link.mail-link::after,
.service-page .contact-link.mail-link::after {
  background: var(--service-accent, var(--amber));
}

.sales-page .capability-card:nth-child(1),
.sales-page .capability-card:nth-child(2),
.sales-page .capability-card:nth-child(3),
.sales-page .capability-card:nth-child(4) {
  grid-column: span 3;
}

.sales-page .problem-section {
  background:
    linear-gradient(135deg, rgba(232, 163, 38, 0.09), transparent 42%),
    #ffffff;
}

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

.recruiting-page .capability-card {
  grid-column: auto;
  min-height: 282px;
}

.recruiting-page .reason-card {
  background:
    linear-gradient(180deg, rgba(236, 251, 245, 0.92), #ffffff 72%),
    #ffffff;
}

.recruiting-page .problem-item::before {
  box-shadow: 0 0 0 7px rgba(30, 167, 120, 0.14);
}

.marketing-page .capability-card:nth-child(1),
.marketing-page .capability-card:nth-child(2) {
  grid-column: span 3;
}

.marketing-page .capability-card:nth-child(3),
.marketing-page .capability-card:nth-child(4) {
  grid-column: span 3;
}

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

.marketing-page .problem-section {
  background:
    linear-gradient(135deg, rgba(47, 183, 199, 0.1), transparent 44%),
    #ffffff;
}

.marketing-page .problem-item::before {
  box-shadow: 0 0 0 7px rgba(47, 183, 199, 0.14);
}

.mission {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 183, 199, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(32, 180, 134, 0.12), transparent 34%),
    var(--paper);
}

.mission.section-split {
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission h2 {
  max-width: 900px;
}

.statement {
  max-width: 920px;
  padding-left: clamp(0px, 4vw, 44px);
  border-left: 1px solid var(--line);
}

.vision {
  min-height: 540px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 28, 39, 0.92), rgba(7, 45, 58, 0.74) 44%, rgba(7, 45, 58, 0.28) 76%),
    url("./assets/hero-growth.png") center / cover;
  overflow: hidden;
}

.vision::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 28, 39, 0.12), rgba(5, 28, 39, 0.3)),
    linear-gradient(90deg, rgba(5, 28, 39, 0.7), rgba(5, 28, 39, 0.18) 58%, transparent);
  content: "";
  pointer-events: none;
}

.vision::before {
  position: absolute;
  inset: auto -10% 14% auto;
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  content: "";
  animation: orbitSlow 18s linear infinite;
  pointer-events: none;
}

.vision h2,
.vision p {
  color: #ffffff;
}

.vision p {
  color: rgba(255, 255, 255, 0.86);
}

.vision-inner {
  position: relative;
  z-index: 2;
  width: min(calc(var(--max) - 128px), 100%);
  margin: 0 auto;
  text-align: left;
}

.vision-copy {
  position: relative;
  width: min(740px, 100%);
  padding: 0;
}

.vision-copy::before {
  display: block;
  width: 84px;
  height: 2px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--line-green), var(--teal), var(--amber));
  content: "";
}

.vision .section-kicker {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #eafff7;
}

.vision .vision-copy p:not(.section-kicker) {
  max-width: 700px;
  margin-right: 0;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 680;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.vision h2 {
  max-width: 720px;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.42);
}

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

.value-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 58px rgba(16, 42, 51, 0.09);
}

.value-item {
  min-height: 260px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-item span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company {
  background: #f6fbfc;
}

.company-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4vw, 52px);
  padding-left: clamp(59px, 3.3vw, 63px);
  border: 1px solid rgba(217, 232, 236, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 254, 0.92)),
    var(--paper);
  box-shadow: 0 20px 66px rgba(16, 42, 51, 0.09);
}

.company .section-kicker {
  margin-bottom: 0;
}

.company .section-kicker + h2 {
  margin-top: 22px;
}

.company h2 {
  white-space: nowrap;
}

.company-list {
  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transform: translateX(0);
  transition: background 180ms ease, transform 180ms ease;
}

.company-list div:hover {
  background: rgba(47, 183, 199, 0.045);
  transform: none;
}

.company-list div:first-child {
  padding-top: 0;
}

.company-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-list a {
  color: #087b8a;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 0;
}

.contact-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 14px 42px rgba(16, 42, 51, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-link::after {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
  box-shadow: 0 0 0 7px rgba(255, 199, 44, 0.14);
}

.site-footer {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  margin: 0;
  padding: 12px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(217, 232, 236, 0.86);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  color: #6a7e85;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -8px 32px rgba(16, 42, 51, 0.045);
}

.site-footer img {
  width: auto;
  height: 30px;
}

.site-footer p {
  margin: 0 0 0 auto;
  font-size: 12px;
  font-weight: 760;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.reveal.is-visible:nth-child(2) {
  transition-delay: 70ms;
}

.reveal.is-visible:nth-child(3) {
  transition-delay: 140ms;
}

.reveal.is-visible:nth-child(4) {
  transition-delay: 210ms;
}

.reveal.is-visible:nth-child(5) {
  transition-delay: 280ms;
}

@keyframes heroBreathe {
  from {
    transform: translate3d(calc(var(--hero-x) * -0.45), calc(var(--hero-y) * -0.24), 0) scale(1.035);
  }

  to {
    transform: translate3d(calc(var(--hero-x) * -0.45 - 12px), calc(var(--hero-y) * -0.24 - 4px), 0) scale(1.055);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes capabilityMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes networkFlow {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes orbitSlow {
  from {
    transform: rotate(0deg) translateX(12px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(12px) rotate(-360deg);
  }
}

@keyframes arrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@keyframes visualFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

@keyframes visualMiniFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes visualDash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -260;
  }
}

@keyframes visualPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .section-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-split h2 {
    max-width: 760px;
  }
}

@media (max-width: 960px) {
  .service-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-visual {
    width: min(560px, 100%);
    min-height: 340px;
    justify-self: start;
  }

  .service-visual svg {
    min-height: 340px;
  }

  .service-grid,
  .value-list,
  .company-panel,
  .contact,
  .detail-grid,
  .service-cta,
  .problem-grid,
  .reason-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .company-panel {
    padding: 28px;
  }

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

  .sales-page .capability-card:nth-child(1),
  .sales-page .capability-card:nth-child(2),
  .sales-page .capability-card:nth-child(3),
  .sales-page .capability-card:nth-child(4),
  .marketing-page .capability-card:nth-child(1),
  .marketing-page .capability-card:nth-child(2),
  .marketing-page .capability-card:nth-child(3),
  .marketing-page .capability-card:nth-child(4),
  .capability-card {
    grid-column: auto;
  }

  .marketing-page .price-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .value-list {
    border-left: 1px solid var(--line);
  }

  .value-item {
    min-height: 220px;
  }

  .contact {
    padding-top: clamp(72px, 10vw, 132px);
  }

  .detail-aside {
    position: relative;
    top: 0;
  }

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

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

  .brand {
    width: 164px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 15px 12px;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 88svh;
    padding: 88px 20px 86px;
  }

  .eyebrow,
  .section-kicker {
    min-height: 28px;
    padding: 0 11px;
    font-size: 12px;
  }

  .eyebrow + h1,
  .section-kicker + h2 {
    margin-top: 22px;
  }

  .hero-inner .eyebrow + h1,
  .service-hero-inner .eyebrow + h1 {
    margin-top: 28px;
  }

  .hero-inner .hero-actions,
  .service-hero-inner .hero-actions {
    margin-top: 32px;
  }

  .company .section-kicker + h2 {
    margin-top: 24px;
  }

  section {
    padding: 68px 20px;
  }

  .section-grid h2,
  .section-split h2,
  .section-head h2,
  .vision h2,
  .company h2,
  .contact h2,
  .lp-head h2 {
    font-size: clamp(25px, 6.7vw, 31px);
    line-height: 1.2;
  }

  .service-cta h2 {
    font-size: clamp(24px, 6.1vw, 29px);
    line-height: 1.28;
  }

  .service-cta .section-kicker + h2 {
    margin-top: 22px;
  }

  .service-cta .cta-actions {
    gap: 10px;
  }

  .vision {
    min-height: 520px;
    align-items: end;
    background:
      linear-gradient(90deg, rgba(11, 45, 58, 0.86), rgba(11, 45, 58, 0.66) 70%, rgba(11, 45, 58, 0.42)),
      url("./assets/hero-growth.png") center / cover;
  }

  .vision-inner {
    margin: 0;
    text-align: left;
  }

  .vision-copy {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .vision .section-kicker {
    margin: 0;
  }

  .vision .section-kicker::after {
    display: none;
  }

  .vision p {
    margin-right: 0;
    margin-left: 0;
    text-shadow: none;
  }

  .vision h2 {
    text-shadow: none;
  }
  }

  .section-grid p:not(.section-kicker),
  .statement p,
  .vision p:not(.section-kicker),
  .company p:not(.section-kicker),
    .contact-copy,
    .lp-head p:not(.section-kicker),
    .service-hero p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .service-hero {
    min-height: 68svh;
    padding: 104px 20px 56px;
  }

  .service-hero::before {
    inset: 86px 20px auto auto;
    width: 220px;
    height: 220px;
  }

  .service-hero h1 {
    font-size: clamp(26px, 6.9vw, 32px);
    line-height: 1.2;
    word-break: auto-phrase;
  }

  .service-visual {
    min-height: 270px;
  }

  .service-visual svg {
    min-height: 270px;
  }

  .service-detail {
    padding-top: 56px;
  }

  .detail-aside,
  .detail-block {
    padding: 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .recruiting-page .capability-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .problem-item,
  .capability-card,
  .reason-card,
  .price-card,
  .flow-list li {
    min-height: auto;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 16px;
  }

  .faq-list details p {
    padding: 0 20px 20px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(247, 250, 249, 0.98) 0%, rgba(247, 250, 249, 0.9) 66%, rgba(247, 250, 249, 0.48) 100%),
      linear-gradient(180deg, rgba(247, 250, 249, 0.05), #f7faf9 100%);
  }

  .motion-network {
    right: -180px;
    top: 96px;
    width: 540px;
    opacity: 0.22;
  }

  .hero h1 {
    font-size: clamp(28px, 7.4vw, 33px);
    line-height: 1.18;
    word-break: auto-phrase;
  }

  .hero-copy {
    font-size: 14.5px;
    line-height: 1.82;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 10px 8px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 12px;
    line-height: 1.25;
  }

  .capability-rail {
    left: 20px;
    right: 20px;
    bottom: 16px;
    grid-template-columns: 1fr;
    min-height: 46px;
  }

  .capability-rail p {
    position: absolute;
    left: 14px;
    top: -22px;
    padding-left: 0;
    color: rgba(16, 42, 51, 0.58);
    font-size: 10px;
  }

  .capability-track span {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }

  .capability-track span::before {
    margin-right: 10px;
  }

  .section-grid,
  .section-split {
    grid-template-columns: 1fr;
  }

  .intro .section-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    padding-left: 0;
    border-left: 0;
  }

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

  .contact-link {
    width: 100%;
    justify-content: space-between;
    padding: 0 18px;
  }

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-link span {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 54px;
    margin-bottom: 0;
    padding: 12px 20px;
    gap: 12px;
  }

  .site-footer img {
    height: 24px;
  }

  .site-footer p {
    flex: 1;
    min-width: 0;
    font-size: 10.5px;
    line-height: 1.4;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img,
  .motion-network,
  .network-path,
  .network-node,
  .capability-track,
  .service-visual,
  .visual-mini-card,
  .visual-accent-line,
  .visual-dot,
  .vision::after,
  .vision::before {
    animation: none !important;
  }
}
