@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #102a43;
  --blue: #1f6feb;
  --blue-dark: #1459c7;
  --cyan: #38bdf8;
  --ink: #102033;
  --muted: #687482;
  --line: #dfe5eb;
  --surface: #f4f7fa;
  --white: #ffffff;
  --shell: min(1380px, calc(100vw - 80px));
  --header-height: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.hero-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: white; color: var(--ink); border-radius: 6px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.section-shell { width: var(--shell); margin: 0 auto; }
.section-pad { padding: 150px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .35s var(--ease), color .35s, background .35s, box-shadow .35s;
}
.site-header.is-scrolled { height: 72px; color: var(--ink); background: rgba(255,255,255,.92); border-color: rgba(16,42,67,.08); box-shadow: 0 12px 36px rgba(16,42,67,.08); backdrop-filter: blur(18px); }
.header-inner { width: var(--shell); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.brand { position: relative; display: block; width: 122px; height: 42px; }
.brand-logo { position: absolute; inset: 0; width: 122px; height: 42px; object-fit: contain; transition: opacity .3s; }
.brand-logo--dark { opacity: 0; }
.brand-logo--light { opacity: 1; }
.site-header.is-scrolled .brand-logo--dark { opacity: 1; }
.site-header.is-scrolled .brand-logo--light { opacity: 0; }
.desktop-nav { display: flex; align-items: center; gap: 44px; font-size: 14px; font-weight: 500; letter-spacing: -.01em; }
.desktop-nav a { position: relative; padding: 10px 0; opacity: .78; transition: opacity .2s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: currentColor; transition: right .3s var(--ease); }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 12px; padding: 9px 8px 9px 19px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 14px; font-weight: 600; transition: background .25s, color .25s, border .25s; backdrop-filter: blur(12px); }
.header-cta svg { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: white; color: var(--navy-900); }
.header-cta:hover { background: white; color: var(--navy-900); }
.site-header.is-scrolled .header-cta { border-color: var(--line); }
.site-header.is-scrolled .header-cta svg { background: var(--navy-900); color: white; }
.site-header.is-scrolled.is-dark-section { color: white; background: rgba(3,5,7,.88); border-color: rgba(255,255,255,.09); box-shadow: 0 12px 36px rgba(0,0,0,.2); }
.site-header.is-scrolled.is-dark-section .brand-logo--dark { opacity: 0; }
.site-header.is-scrolled.is-dark-section .brand-logo--light { opacity: 1; }
.site-header.is-scrolled.is-dark-section .header-cta { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.site-header.is-scrolled.is-dark-section .header-cta svg { background: white; color: var(--navy-900); }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

.section-rail {
  position: fixed;
  top: 50%;
  right: clamp(16px, 2.4vw, 42px);
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(16,42,67,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 55px rgba(16,42,67,.14);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}
.section-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .25s, background .25s, box-shadow .25s, transform .25s var(--ease);
}
.section-rail a::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(16,42,67,.18);
  border-radius: inherit;
  opacity: .46;
  transform: scale(.68);
  transition: opacity .25s, transform .25s var(--ease);
}
.section-rail a:hover,
.section-rail a:focus-visible {
  color: white;
  background: var(--navy-900);
  transform: translateX(-2px);
  outline: 0;
}
.section-rail a:hover::before,
.section-rail a:focus-visible::before,
.section-rail a.is-active::before {
  opacity: 0;
  transform: scale(1);
}
.section-rail a.is-active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(31,111,235,.25);
}
.section-rail__index {
  position: relative;
  z-index: 1;
}
.section-rail__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 13px);
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(7,21,34,.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity .25s, transform .25s var(--ease);
  white-space: nowrap;
}
.section-rail a:hover .section-rail__label,
.section-rail a:focus-visible .section-rail__label {
  opacity: 1;
  transform: translate(0, -50%);
}

.hero-active .section-rail,
.dark-section-active .section-rail {
  border-color: rgba(255,255,255,.13);
  background: rgba(5,8,12,.42);
  box-shadow: none;
}
.hero-active .section-rail a,
.dark-section-active .section-rail a { color: rgba(255,255,255,.5); }
.hero-active .section-rail a::before,
.dark-section-active .section-rail a::before { border-color: rgba(255,255,255,.28); }
.hero-active .section-rail a.is-active,
.dark-section-active .section-rail a.is-active {
  color: white;
  background: rgba(255,255,255,.13);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.hero { position: relative; min-height: 760px; height: 100svh; overflow: hidden; color: white; background: #05080c; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #05080c; }
.hero-media__image { position: absolute; inset: -3%; width: 106%; height: 106%; max-width: none; object-fit: cover; transform: scale(1.025); transform-origin: 70% 45%; animation: hero-drift 12s ease-in-out infinite alternate; will-change: transform; }
.hero-media__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,12,.98) 0%, rgba(5,8,12,.89) 35%, rgba(5,8,12,.36) 68%, rgba(5,8,12,.24) 100%), linear-gradient(180deg, rgba(5,8,12,.14) 0%, transparent 48%, rgba(5,8,12,.76) 100%); }
.hero-intro { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; color: white; background: #030507; opacity: 1; visibility: visible; transition: opacity .7s var(--ease), visibility .7s; pointer-events: none; }
.hero-intro p { margin: 0; font-size: clamp(20px, 2vw, 32px); font-weight: 300; letter-spacing: -.035em; animation: intro-copy 1.65s var(--ease) both; }
body.intro-complete .hero-intro { opacity: 0; visibility: hidden; }
.hero-inner { position: relative; z-index: 2; width: var(--shell); height: 100%; margin: 0 auto; display: flex; align-items: center; padding: var(--header-height) 0 128px; }
.hero-copy { align-self: center; max-width: 1080px; padding-top: 44px; }
.eyebrow { margin: 0 0 30px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.hero-title { max-width: 1050px; margin: 0; font-size: clamp(58px, 5.4vw, 84px); line-height: 1.08; letter-spacing: -.065em; font-weight: 300; }
.hero-description { margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.55; letter-spacing: -.015em; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 0 25px 0 28px; border: 0; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 20px; height: 20px; }
.button--primary { min-height: 52px; padding: 0 22px 0 25px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(31,111,235,.76); color: white; box-shadow: 0 16px 36px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.button--primary:hover { background: #2d7af0; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.74); font-size: 14px; font-weight: 600; }
.text-link span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: background .2s, color .2s; }
.text-link:hover span { background: white; color: var(--navy-900); }
.hero-footer { position: absolute; z-index: 3; left: 50%; bottom: 28px; width: var(--shell); transform: translateX(-50%); display: grid; grid-template-columns: 1fr minmax(370px, 470px) 1fr; align-items: center; gap: 36px; }
.hero-signature { margin: 0; color: rgba(255,255,255,.34); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-feature { display: grid; grid-template-columns: 88px 1fr 28px; align-items: center; gap: 16px; min-width: 0; color: white; }
.hero-feature img { width: 88px; height: 58px; border-radius: 7px; object-fit: cover; filter: saturate(.72) brightness(.78); transition: filter .35s, transform .35s var(--ease); }
.hero-feature > span { display: flex; min-width: 0; flex-direction: column; }
.hero-feature small { margin-bottom: 3px; color: rgba(255,255,255,.4); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-feature strong { overflow: hidden; font-size: 13px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.hero-feature b { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 400; transition: background .25s, color .25s, transform .25s; }
.hero-feature:hover img { filter: saturate(1) brightness(1); transform: scale(1.035); }
.hero-feature:hover b { color: #05080c; background: white; transform: rotate(45deg); }
.hero-scroll { justify-self: end; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll svg { width: 21px; height: 21px; animation: bounce 2s infinite; }
.hero-loading .hero-media__image,
.hero.is-paused .hero-media__image { animation-play-state: paused; }

.section-kicker { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(31,111,235,.1); }
.section-kicker--light { color: rgba(255,255,255,.5); }
.section-kicker--light .kicker-dot { background: var(--cyan); box-shadow: 0 0 0 5px rgba(56,189,248,.1); }
.statement { position: relative; overflow: hidden; background: white; }
.statement.section-pad { padding-top: 135px; padding-bottom: 135px; }
.statement-meta { display: flex; align-items: center; justify-content: space-between; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.statement-index { color: #8a96a3; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.statement-stage { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; margin: 95px 0 115px; }
.statement-label { display: flex; flex-direction: column; gap: 3px; padding-top: 8px; color: #8a96a3; font-size: 10px; font-weight: 700; letter-spacing: .13em; line-height: 1.65; text-transform: uppercase; }
.statement-copy { max-width: 1080px; }
.section-display { margin: -12px 0 0; font-size: clamp(38px, 4vw, 61px); line-height: 1.38; letter-spacing: -.05em; }
.section-display span { color: var(--blue); }
.statement .section-display { font-size: clamp(54px, 5vw, 76px); line-height: 1.22; font-weight: 500; letter-spacing: -.06em; }
.statement-foundation { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.7fr); gap: clamp(60px, 7vw, 120px); align-items: stretch; }
.statement-detail { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; max-width: 430px; padding: 28px 0 25px; }
.statement-detail p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.statement-principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement-principle { position: relative; display: flex; min-height: 235px; padding: 25px 24px 27px; border-left: 1px solid var(--line); flex-direction: column; justify-content: space-between; transition: color .35s, background .35s, transform .35s var(--ease); }
.statement-principle:first-child { border-left: 0; }
.statement-principle::before { content: ""; position: absolute; inset: -1px 0 auto; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.statement-principle:hover { color: var(--navy-900); background: #f7f9fb; transform: translateY(-5px); }
.statement-principle:hover::before { transform: scaleX(1); }
.statement-principle > span { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.statement-principle h3 { margin: 0 0 9px; font-size: clamp(23px, 2vw, 29px); font-weight: 500; letter-spacing: -.045em; }
.statement-principle p { max-width: 170px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.statement-rule { position: relative; height: 1px; margin-top: 75px; overflow: hidden; background: var(--line); }
.statement-rule::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue), var(--cyan) 48%, transparent 82%); transform: scaleX(0); transform-origin: left; transition: transform 1.2s .2s var(--ease); }
.statement-rule.is-visible::after { transform: scaleX(1); }

.services { background: var(--surface); }
.section-head { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; margin-bottom: 75px; }
.section-title { margin: -11px 0 16px; font-size: clamp(38px, 4vw, 58px); line-height: 1.25; letter-spacing: -.05em; }
.services .section-title span { display: inline; }
.section-intro { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; }
.service-list { border-top: 1px solid #cfd8e2; }
.service-card { position: relative; display: grid; grid-template-columns: 80px 100px 1fr 50px; gap: 40px; align-items: start; min-height: 246px; padding: 42px 20px 38px 0; overflow: hidden; border-bottom: 1px solid #cfd8e2; transition: background .35s; }
.service-card::before { content: ""; position: absolute; inset: 0; background: white; opacity: 0; transition: opacity .35s; }
.service-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan) 55%, transparent 88%); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after, .service-card:focus-within::after { transform: scaleX(1); }
.service-number { color: #8795a4; font-size: 12px; font-weight: 700; }
.service-icon { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid #d5dee7; border-radius: 50%; color: var(--blue); }
.service-icon svg { width: 40px; height: 40px; stroke-width: 1.35; }
.service-content { display: grid; grid-template-columns: 220px 1fr; gap: 0 45px; align-items: baseline; }
.service-content > p { grid-column: 1; margin: 0 0 5px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-content h3 { grid-column: 1; margin: 0; font-size: 36px; letter-spacing: -.04em; }
.service-content > span { grid-column: 2; grid-row: 1 / span 2; max-width: 520px; color: var(--muted); line-height: 1.85; }
.service-content ul { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.service-content li { padding: 7px 12px; border: 1px solid #d8e0e7; border-radius: 99px; color: #526170; font-size: 13px; background: rgba(255,255,255,.5); }
.service-arrow { justify-self: end; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #cfd8e2; border-radius: 50%; color: var(--blue); font-size: 18px; transition: border-color .25s, background .25s, color .25s, transform .25s; }
.service-arrow:hover, .service-arrow:focus-visible { border-color: var(--blue); outline: 0; background: var(--blue); color: white; transform: rotate(45deg); }

.approach { position: relative; overflow: hidden; color: white; background: var(--navy-950); }
.approach::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 90px 90px; }
.approach-glow { position: absolute; width: 800px; height: 800px; right: -20%; top: -35%; border-radius: 50%; background: radial-gradient(circle, rgba(31,111,235,.16), transparent 66%); }
.approach .section-shell { position: relative; z-index: 1; }
.approach-head { display: grid; grid-template-columns: 260px 1fr; gap: 60px; margin-bottom: 95px; }
.section-display--light { color: white; }
.section-display--light span { color: var(--cyan); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-item { display: grid; grid-template-columns: 75px 130px 1fr; gap: 25px; min-height: 185px; }
.process-index { padding-top: 4px; color: var(--cyan); font-size: 11px; font-weight: 700; }
.process-line { position: relative; display: flex; justify-content: center; }
.process-line::before { content: ""; position: absolute; top: 12px; bottom: -12px; width: 1px; background: rgba(255,255,255,.13); }
.process-item:last-child .process-line::before { bottom: 50%; }
.process-line span { position: relative; z-index: 1; width: 25px; height: 25px; border: 1px solid rgba(56,189,248,.55); border-radius: 50%; background: var(--navy-950); }
.process-line span::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px rgba(56,189,248,.8); }
.process-item > div:last-child { display: grid; grid-template-columns: 150px 270px 1fr; gap: 35px; padding: 0 0 55px; border-bottom: 1px solid rgba(255,255,255,.09); }
.process-item p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.process-item h3 { margin: -6px 0 0; font-size: 25px; letter-spacing: -.03em; }
.process-item > div > span { max-width: 530px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.8; }
.values-row { display: grid; grid-template-columns: 1.05fr repeat(3, 1fr); margin-top: 100px; border: 1px solid rgba(255,255,255,.12); }
.values-row > * { min-height: 170px; padding: 30px; border-right: 1px solid rgba(255,255,255,.12); }
.values-row > *:last-child { border-right: 0; }
.values-row > div { display: flex; align-items: flex-end; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.values-row > div h3 { margin: 0; font: inherit; }
.values-row article { position: relative; display: flex; flex-direction: column; justify-content: flex-end; }
.values-row article > span { position: absolute; right: 22px; top: 18px; color: var(--cyan); font-size: 9px; }
.values-row h4 { margin: 0; font-size: 15px; }
.values-row p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: 12px; }

.works { background: white; }
.works-head { grid-template-columns: 1fr auto; align-items: end; }
.works-head .section-kicker { margin-bottom: 30px; }
.work-filters { display: flex; gap: 8px; padding-bottom: 7px; }
.work-filters button { padding: 8px 15px; border: 1px solid var(--line); border-radius: 99px; background: white; color: var(--muted); font-size: 14px; cursor: pointer; transition: background .2s, color .2s, border .2s; }
.work-filters button:hover, .work-filters button.is-active { border-color: var(--navy-900); background: var(--navy-900); color: white; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 55px 24px; }
.work-card { grid-column: span 5; transition: opacity .35s, transform .4s var(--ease); }
.work-card--wide { grid-column: span 7; }
.work-card.is-hidden { display: none; }
.work-image { position: relative; overflow: hidden; aspect-ratio: 1.3; background: var(--surface); }
.work-card--wide .work-image { aspect-ratio: 1.82; }
.work-image::after { content: "View project"; position: absolute; inset: 0; display: grid; place-items: center; color: white; background: rgba(7,21,34,.56); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transition: opacity .35s; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-image img { transform: scale(1.045); }
.work-card:hover .work-image::after { opacity: 1; }
.work-info { display: flex; align-items: center; justify-content: space-between; padding-top: 21px; }
.work-info span { color: #7b8793; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.work-info h3 { margin: 4px 0 0; font-size: 22px; letter-spacing: -.035em; }
.round-arrow { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue) !important; font-size: 17px !important; transition: background .2s, color .2s, transform .2s; }
.work-card:hover .round-arrow { background: var(--blue); color: white !important; transform: rotate(45deg); }
.works-note { display: flex; justify-content: space-between; align-items: center; margin-top: 90px; padding: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.works-note p { margin: 0; color: var(--muted); font-size: 14px; }
.works-note a { display: flex; align-items: center; gap: 16px; color: var(--blue); font-size: 14px; font-weight: 700; }
.works-note a span { font-size: 17px; }

.contact { position: relative; min-height: 860px; overflow: hidden; padding: 150px 0 135px; color: white; background: #05080c; isolation: isolate; }
.contact::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); }
.contact-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.contact-media img { position: absolute; inset: -8% -4%; width: 108%; height: 116%; max-width: none; object-fit: cover; object-position: 70% center; opacity: .5; transform: scale(1.08); filter: saturate(.82) brightness(.72); }
.contact-media__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,12,.99) 0%, rgba(5,8,12,.9) 42%, rgba(5,8,12,.55) 72%, rgba(5,8,12,.72) 100%), linear-gradient(180deg, rgba(5,8,12,.42), transparent 42%, rgba(5,8,12,.92)); }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 7vw, 120px); align-items: center; }
.contact-copy h2 { max-width: 690px; margin: 37px 0 28px; font-size: clamp(48px, 4.7vw, 68px); line-height: 1.12; letter-spacing: -.065em; font-weight: 300; }
.contact-copy h2 span { color: white; }
.contact-copy > p { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.75; }
.contact-direct { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 480px; margin-top: 76px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-direct a { display: flex; flex-direction: column; }
.contact-direct small { margin-bottom: 8px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact-direct strong { font-size: 15px; font-weight: 500; letter-spacing: -.015em; }
.contact-form { padding: 42px 44px 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(5,8,12,.62); box-shadow: 0 36px 80px rgba(0,0,0,.32); backdrop-filter: blur(24px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 22px; }
.contact-form label { display: flex; flex-direction: column; }
.contact-form label > span { margin-bottom: 8px; color: rgba(255,255,255,.62); font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.contact-form em { color: var(--cyan); font-style: normal; }
.form-wide { grid-column: 1 / -1; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.18); border-radius: 0; outline: 0; color: white; background: transparent; font-size: 14px; transition: border .2s; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 34px; }
.privacy-check { flex-direction: row !important; align-items: center; gap: 10px; cursor: pointer; }
.privacy-check input { width: 15px; height: 15px; margin: 0; accent-color: var(--cyan); }
.privacy-check span { margin: 0 !important; color: rgba(255,255,255,.42) !important; font-size: 13px !important; }
.button--contact { min-width: 205px; min-height: 52px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(31,111,235,.78); color: white; box-shadow: 0 15px 34px rgba(0,0,0,.2); }
.button--contact:hover { background: #2d7af0; }
.form-status { min-height: 22px; margin: 16px 0 -10px; color: var(--cyan); font-size: 13px; text-align: right; }

.site-footer { color: white; background: #030507; }
.footer-connect { display: flex; align-items: center; justify-content: space-between; gap: 40px; min-height: 88px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-connect p { margin: 0; color: rgba(255,255,255,.38); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-connect a { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; }
.footer-connect a span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--cyan); transition: color .25s, background .25s, transform .25s; }
.footer-connect a:hover span { color: #030507; background: white; transform: rotate(45deg); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.55fr) .55fr .8fr; gap: clamp(70px, 8vw, 150px); padding: 90px 0 95px; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 122px; }
.footer-brand h2 { margin: 48px 0 22px; color: rgba(255,255,255,.92); font-size: clamp(28px, 2vw, 34px); line-height: 1.18; letter-spacing: -.055em; font-weight: 300; }
.footer-brand > p { max-width: 470px; margin: 0; color: rgba(255,255,255,.42); font-size: 13px; line-height: 1.75; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav small, .footer-contact small { margin-bottom: 25px; color: rgba(255,255,255,.3); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav a { margin-bottom: 11px; color: rgba(255,255,255,.72); font-size: 16px; letter-spacing: -.02em; transition: color .2s, transform .2s; }
.footer-nav a:hover { color: white; transform: translateX(3px); }
.footer-contact > a { margin-bottom: 8px; color: rgba(255,255,255,.76); font-size: 15px; }
.footer-contact address { margin-top: 25px; color: rgba(255,255,255,.36); font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 40px; min-height: 82px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.28); font-size: 12px; }
.company-info { display: flex; flex-wrap: wrap; gap: 5px 24px; }
.footer-legal { display: flex; flex: 0 0 auto; align-items: center; gap: 28px; }
.footer-legal p { margin: 0; }
.to-top { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.46); font-size: 13px; letter-spacing: .11em; text-transform: uppercase; }
.to-top span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-copy .hero-title { transition-delay: .1s; }
.hero-copy .hero-description { transition-delay: .2s; }
.hero-copy .hero-actions { transition-delay: .3s; }
@keyframes hero-drift {
  0% { transform: scale(1.025) translate3d(0, 0, 0); }
  100% { transform: scale(1.075) translate3d(-1.2%, .7%, 0); }
}
@keyframes intro-copy {
  0% { opacity: 0; transform: translateY(18px); }
  28%, 72% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}
@keyframes bounce { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(4px); } }

@media (max-width: 1180px) {
  :root { --shell: min(calc(100vw - 48px), 1080px); }
  .section-rail { right: 14px; transform: translateY(-50%) scale(.92); transform-origin: right center; }
  .hero-title { font-size: clamp(54px, 6.3vw, 72px); }
  .hero-footer { grid-template-columns: 1fr minmax(340px, 420px) 1fr; gap: 24px; }
  .section-head, .approach-head { grid-template-columns: 190px 1fr; gap: 40px; }
  .statement-stage { grid-template-columns: 190px 1fr; gap: 40px; }
  .statement-foundation { gap: 55px; }
  .service-card { grid-template-columns: 50px 80px 1fr 42px; gap: 25px; }
  .service-content { grid-template-columns: 175px 1fr; gap: 0 28px; }
  .process-item > div:last-child { grid-template-columns: 110px 220px 1fr; gap: 20px; }
  .contact-inner { gap: 60px; }
  .contact-form { padding: 40px 35px 35px; }
  .footer-main { gap: 70px; }
}

@media (min-width: 901px) and (max-width: 1320px) {
  .service-card { padding-right: 100px; }
  .approach-head, .process-list, .values-row { margin-right: 80px; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 40px); --header-height: 74px; }
  .section-pad { padding: 100px 0; }
  .site-header, .site-header.is-scrolled { height: 74px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .section-rail { display: none; }
  .menu-toggle { justify-self: end; display: inline-flex; height: 42px; padding: 0 13px 0 15px; border: 1px solid rgba(255,255,255,.52); border-radius: 999px; background: rgba(5,8,12,.16); align-items: center; justify-content: center; gap: 11px; cursor: pointer; backdrop-filter: blur(10px); }
  .site-header.is-scrolled .menu-toggle { border-color: rgba(16,42,67,.22); background: rgba(255,255,255,.6); }
  .site-header.is-scrolled.is-dark-section .menu-toggle { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
  .menu-toggle__label { font-size: 13px; font-weight: 600; }
  .menu-toggle__lines { position: relative; display: block; width: 16px; height: 10px; }
  .menu-toggle__lines i { position: absolute; left: 0; display: block; width: 16px; height: 1px; background: currentColor; transition: top .3s, transform .3s; }
  .menu-toggle__lines i:first-child { top: 2px; }
  .menu-toggle__lines i:last-child { top: 7px; }
  .site-header.menu-active { color: white; background: var(--navy-950); backdrop-filter: none; }
  .site-header.menu-active .brand-logo--dark { opacity: 0; }
  .site-header.menu-active .brand-logo--light { opacity: 1; }
  .site-header.menu-active .menu-toggle__lines i:first-child { top: 5px; transform: rotate(45deg); }
  .site-header.menu-active .menu-toggle__lines i:last-child { top: 5px; transform: rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; padding: 45px 28px 30px; background: var(--navy-950); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: opacity .3s, transform .3s, visibility .3s; }
  .site-header.menu-active .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav > a { display: flex; align-items: baseline; gap: 22px; padding: 14px 0; font-size: 34px; font-weight: 600; letter-spacing: -.03em; }
  .mobile-nav > a span { color: var(--cyan); font-size: 9px; letter-spacing: .1em; }
  .mobile-nav-meta { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 13px; }
  .hero { min-height: 800px; height: 100svh; }
  .hero-media__image { inset: -2% -28% -2% -8%; width: 138%; height: 104%; object-position: 61% center; }
  .hero-media__veil { background: linear-gradient(90deg, rgba(5,8,12,.98) 0%, rgba(5,8,12,.84) 56%, rgba(5,8,12,.28) 100%), linear-gradient(180deg, rgba(5,8,12,.16), transparent 50%, rgba(5,8,12,.88)); }
  .hero-inner { display: block; height: 100%; padding: 142px 0 160px; }
  .hero-copy { max-width: 760px; padding-top: 0; }
  .hero-title { font-size: clamp(48px, 8.4vw, 67px); }
  .hero-description { font-size: 17px; }
  .hero-footer { bottom: 22px; display: block; }
  .hero-signature, .hero-scroll { display: none; }
  .hero-feature { max-width: 470px; }
  .section-head, .approach-head { grid-template-columns: 1fr; gap: 40px; }
  .statement.section-pad { padding-top: 105px; padding-bottom: 105px; }
  .statement-stage { grid-template-columns: 1fr; gap: 36px; margin: 70px 0 80px; }
  .statement-label { flex-direction: row; gap: 18px; padding-top: 0; }
  .statement-copy { max-width: none; }
  .statement-foundation { grid-template-columns: 1fr; gap: 55px; }
  .statement-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; max-width: 760px; padding: 0; }
  .statement-principle { min-height: 210px; }
  .service-card { grid-template-columns: 45px 70px 1fr 42px; }
  .service-content { grid-template-columns: 1fr; }
  .service-content > p, .service-content h3, .service-content > span, .service-content ul { grid-column: 1; grid-row: auto; }
  .service-content > span { margin-top: 18px; }
  .service-content ul { margin-top: 22px; }
  .approach-head { margin-bottom: 70px; }
  .process-item { grid-template-columns: 45px 55px 1fr; gap: 12px; }
  .process-item > div:last-child { grid-template-columns: 1fr; gap: 8px; }
  .process-item h3 { margin: 0; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .values-row > *:nth-child(2) { border-right: 0; }
  .values-row > *:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .work-card, .work-card--wide { grid-column: span 6; }
  .work-card--wide .work-image, .work-image { aspect-ratio: 1.3; }
  .contact { min-height: auto; padding: 120px 0 110px; }
  .contact-media img { inset: -5% -28% -5% -8%; width: 136%; height: 110%; object-position: 64% center; opacity: .42; }
  .contact-inner { grid-template-columns: 1fr; gap: 70px; }
  .contact-copy { display: block; max-width: 720px; }
  .contact-copy h2 { max-width: 720px; }
  .contact-direct { max-width: 500px; }
  .footer-main { grid-template-columns: 1.2fr .6fr .8fr; gap: 45px; padding: 75px 0 80px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 22px; padding: 26px 0 30px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 32px); }
  .section-pad { padding: 84px 0; }
  .brand, .brand-logo { width: 108px; }
  .hero { min-height: 780px; }
  .hero-inner { padding: 128px 0 142px; }
  .hero-eyebrow { max-width: 290px; margin-bottom: 22px; font-size: 8px; line-height: 1.7; }
  .hero-title { max-width: 560px; font-size: clamp(39px, 10.7vw, 49px); line-height: 1.13; letter-spacing: -.06em; }
  .hero-description { margin-top: 24px; font-size: 15.5px; line-height: 1.58; }
  .hero-description br { display: none; }
  .hero-actions { gap: 20px; margin-top: 30px; }
  .button { min-height: 50px; font-size: 14px; }
  .button--primary { padding: 0 18px 0 21px; }
  .hero-feature { grid-template-columns: 78px 1fr 28px; gap: 12px; }
  .hero-feature img { width: 78px; height: 53px; }
  .hero-feature strong { font-size: 12px; }
  .section-display { font-size: 34px; }
  .statement.section-pad { padding-top: 88px; padding-bottom: 88px; }
  .statement-meta { padding-bottom: 18px; }
  .statement-stage { gap: 30px; margin: 58px 0 65px; }
  .statement-label { gap: 12px; font-size: 8px; }
  .statement .section-display { font-size: clamp(39px, 10.5vw, 48px); line-height: 1.2; }
  .statement .section-display br { display: none; }
  .statement-foundation { gap: 48px; }
  .statement-detail { grid-template-columns: 1fr; gap: 20px; }
  .statement-detail p { font-size: 14px; }
  .statement-principles { grid-template-columns: 1fr; }
  .statement-principle { min-height: 145px; padding: 22px 4px 23px; border-left: 0; border-bottom: 1px solid var(--line); }
  .statement-principle:last-child { border-bottom: 0; }
  .statement-principle:hover { padding-left: 12px; transform: none; }
  .statement-principle p { max-width: none; }
  .statement-rule { margin-top: 55px; }
  .section-title { font-size: 36px; }
  .section-head { margin-bottom: 50px; }
  .services .section-title span { display: block; }
  .service-card { grid-template-columns: 36px 1fr 36px; gap: 15px; min-height: auto; padding: 35px 0; }
  .service-icon { display: none; }
  .service-content h3 { font-size: 31px; }
  .service-content > span { font-size: 14px; }
  .service-content li { font-size: 13px; }
  .service-arrow { width: 36px; height: 36px; }
  .approach { padding-bottom: 76px; }
  .process-item { grid-template-columns: 30px 28px 1fr; min-height: 180px; }
  .process-line span { width: 19px; height: 19px; }
  .process-line span::after { inset: 6px; }
  .process-line::before { top: 8px; }
  .process-item > div:last-child { padding-bottom: 32px; }
  .process-item h3 { font-size: 21px; }
  .values-row { margin-top: 55px; grid-template-columns: 1fr; }
  .values-row > * { min-height: 110px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .values-row > *:last-child { border-bottom: 0; }
  .values-row > div { min-height: 72px; }
  .works-head { align-items: start; }
  .work-filters { overflow-x: auto; max-width: 100%; padding-bottom: 3px; }
  .work-grid { gap: 42px 0; }
  .work-card, .work-card--wide { grid-column: 1 / -1; }
  .works-note { align-items: flex-start; flex-direction: column; gap: 20px; }
  .contact { padding: 96px 0 86px; }
  .contact-media img { inset: 0 -70% 0 -15%; width: 185%; height: 100%; object-position: 62% center; opacity: .38; }
  .contact-media__veil { background: linear-gradient(90deg, rgba(5,8,12,.98), rgba(5,8,12,.72)), linear-gradient(180deg, rgba(5,8,12,.45), transparent 34%, rgba(5,8,12,.96)); }
  .contact-copy { display: block; }
  .contact-copy h2 { margin-top: 30px; font-size: 42px; }
  .contact-copy > p br { display: none; }
  .contact-direct { margin-top: 48px; gap: 20px; }
  .contact-form { padding: 30px 22px 25px; border-radius: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .button--contact { width: 100%; }
  .form-status { text-align: left; }
  .footer-connect { min-height: 76px; }
  .footer-connect p { display: none; }
  .footer-connect a { margin-left: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; padding: 68px 0 72px; }
  .footer-brand h2 { margin-top: 40px; font-size: 36px; }
  .footer-nav small, .footer-contact small { margin-bottom: 18px; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { width: 100%; justify-content: space-between; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-intro { display: none; }
}

/* Shared motion enhancements */
.reveal { transition-delay: var(--reveal-delay, 0ms); }
[data-scroll-motion] { --scroll-shift: 0px; will-change: transform; }
.home-page .section-kicker .kicker-dot { animation: home-kicker-pulse 2.4s ease-in-out infinite; }
.home-page .statement-principle.is-visible { animation: home-card-rise .8s var(--ease) both; animation-delay: var(--reveal-delay, 0ms); }
.home-page .service-card.is-visible .service-icon { animation: home-icon-float 4.2s ease-in-out infinite; animation-delay: var(--reveal-delay, 0ms); }
.home-page .process-item.is-visible .process-line span::after { animation: home-process-pulse 2.2s ease-in-out infinite; animation-delay: var(--reveal-delay, 0ms); }
.home-page .work-image img[data-scroll-motion] { transform: translate3d(0, var(--scroll-shift), 0) scale(1.08); transition: transform .35s linear; }
.home-page .work-card:hover .work-image img[data-scroll-motion] { transform: translate3d(0, var(--scroll-shift), 0) scale(1.13); }
.home-page .contact-media img[data-scroll-motion] { transform: translate3d(0, var(--scroll-shift), 0) scale(1.05); transition: transform .4s linear; }
.home-page .service-card::after { box-shadow: 0 0 18px rgba(56,189,248,.25); }
.home-page .work-card.reveal.is-visible { animation: home-work-settle .9s var(--ease) both; animation-delay: var(--reveal-delay, 0ms); }

@keyframes home-kicker-pulse { 0%,100% { transform: scale(.8); opacity: .55; box-shadow: 0 0 0 0 rgba(31,111,235,.2); } 50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 8px rgba(31,111,235,0); } }
@keyframes home-card-rise { from { opacity: 0; transform: translateY(34px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes home-icon-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-7px) rotate(2deg); } }
@keyframes home-process-pulse { 0%,100% { transform: scale(.72); opacity: .65; box-shadow: 0 0 0 0 rgba(56,189,248,.5); } 50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 7px rgba(56,189,248,0); } }
@keyframes home-work-settle { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: translateY(0); } }

/* Services page — page-scoped styles */
body.page-services { --sv-blue: #1769e8; --sv-ice: #eef5fb; background: #fff; }
body.page-services .site-header:not(.is-dark-section) { color: var(--ink); border-color: rgba(16,42,67,.09); }
body.page-services .site-header:not(.is-dark-section) .brand-logo--dark { opacity: 1; }
body.page-services .site-header:not(.is-dark-section) .brand-logo--light { opacity: 0; }
body.page-services .site-header:not(.is-dark-section) .header-cta { border-color: rgba(16,42,67,.17); color: var(--ink); background: rgba(255,255,255,.55); }
body.page-services .site-header:not(.is-dark-section) .header-cta svg { color: white; background: var(--navy-900); }
body.page-services .site-header.menu-active { color: white; }
body.page-services .site-header.menu-active .brand-logo--dark { opacity: 0; }
body.page-services .site-header.menu-active .brand-logo--light { opacity: 1; }
body.page-services .desktop-nav a[aria-current="page"] { opacity: 1; }
body.page-services .desktop-nav a[aria-current="page"]::after { right: 0; }
body.page-services .mobile-nav a[aria-current="page"] { color: var(--cyan); }

body.page-services .sv-hero { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(135deg, #f8fbfd 0%, #eef5fb 58%, #e7f1fa 100%); isolation: isolate; }
body.page-services .sv-hero::before { content: "SERVICES"; position: absolute; top: 78px; left: 50%; z-index: -1; color: rgba(16,42,67,.035); font-size: clamp(150px, 18vw, 280px); line-height: 1; letter-spacing: -.08em; font-weight: 800; transform: translateX(-50%); white-space: nowrap; }
body.page-services .sv-hero__grid { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(16,42,67,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,42,67,.045) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(180deg, black, transparent 90%); }
body.page-services .sv-hero__inner { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(420px, .82fr); gap: clamp(70px, 8vw, 140px); align-items: center; min-height: 680px; padding: 150px 0 90px; }
body.page-services .sv-hero__copy { position: relative; z-index: 2; }
body.page-services .sv-breadcrumb { display: flex; align-items: center; gap: 11px; margin-bottom: 58px; color: #8a98a7; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
body.page-services .sv-breadcrumb i { width: 28px; height: 1px; background: #b8c4cf; }
body.page-services .sv-breadcrumb strong { color: var(--sv-blue); }
body.page-services .sv-hero__eyebrow { margin: 0 0 22px; color: var(--sv-blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
body.page-services .sv-hero h1 { max-width: 850px; margin: 0; font-size: clamp(50px, 5vw, 72px); line-height: 1.16; letter-spacing: -.07em; font-weight: 500; }
body.page-services .sv-hero h1 span { color: var(--sv-blue); }
body.page-services .sv-hero__description { margin: 33px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
body.page-services .sv-hero__diagram { --pointer-x: 0px; --pointer-y: 0px; position: relative; width: min(37vw, 500px); aspect-ratio: 1; justify-self: end; border: 1px solid rgba(31,111,235,.28); border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.92) 0 19%, rgba(31,111,235,.055) 20% 35%, transparent 36%), radial-gradient(circle at 68% 28%, rgba(56,189,248,.14), transparent 28%); box-shadow: inset 0 0 0 10px rgba(255,255,255,.3), 0 32px 80px rgba(31,111,235,.1); transform: translate3d(var(--pointer-x), var(--pointer-y), 0); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
body.page-services .sv-hero__diagram:hover { box-shadow: inset 0 0 0 10px rgba(255,255,255,.45), 0 38px 95px rgba(31,111,235,.17); }
body.page-services .sv-hero__diagram::before, body.page-services .sv-hero__diagram::after { content: ""; position: absolute; top: 50%; left: 50%; background: linear-gradient(90deg, transparent, rgba(31,111,235,.38) 16%, rgba(31,111,235,.38) 84%, transparent); transform: translate(-50%,-50%); }
body.page-services .sv-hero__diagram::before { width: 100%; height: 1px; }
body.page-services .sv-hero__diagram::after { width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(31,111,235,.38) 16%, rgba(31,111,235,.38) 84%, transparent); }
body.page-services .sv-hero__orbit { position: absolute; inset: 12%; border: 1px dashed rgba(31,111,235,.42); border-radius: 50%; box-shadow: inset 0 0 26px rgba(31,111,235,.035); animation: sv-orbit-spin 18s linear infinite; }
body.page-services .sv-hero__orbit--two { inset: 30%; border-style: solid; border-color: rgba(31,111,235,.26); box-shadow: 0 0 28px rgba(31,111,235,.06); animation-direction: reverse; animation-duration: 12s; }
body.page-services .sv-hero__orbit::after { content: ""; position: absolute; top: 12%; right: 10%; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(56,189,248,.13), 0 0 24px rgba(56,189,248,.9); }
body.page-services .sv-hero__core { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; place-items: center; width: 148px; height: 148px; border: 1px solid rgba(117,212,255,.3); border-radius: 50%; color: white; text-align: center; background: radial-gradient(circle at 35% 25%, #163c60, var(--navy-950) 68%); box-shadow: 0 0 0 13px rgba(31,111,235,.08), 0 28px 65px rgba(16,42,67,.32); transform: translate(-50%,-50%); animation: sv-core-breathe 3.8s ease-in-out infinite; }
body.page-services .sv-hero__core::before { content: ""; position: absolute; inset: -24px; border: 1px solid rgba(31,111,235,.2); border-radius: 50%; animation: sv-core-ring 3.8s ease-in-out infinite; }
body.page-services .sv-hero__core span { color: #75d4ff; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 0 16px rgba(56,189,248,.5); }
body.page-services .sv-hero__core b { font-size: 14px; line-height: 1.35; letter-spacing: -.01em; }
body.page-services .sv-hero__node { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; min-width: 108px; padding: 10px 14px; border: 1px solid rgba(31,111,235,.32); border-radius: 999px; background: rgba(255,255,255,.98); box-shadow: inset 3px 0 0 var(--sv-blue), 0 16px 42px rgba(16,42,67,.16); animation: sv-node-float 4.5s ease-in-out infinite; }
body.page-services .sv-hero__node span { color: var(--sv-blue); font-size: 8px; font-weight: 900; }
body.page-services .sv-hero__node strong { color: var(--ink); font-size: 12px; font-weight: 750; }
body.page-services .sv-hero__node--build { top: 6%; left: 43%; animation-delay: -.4s; }
body.page-services .sv-hero__node--create { top: 45%; right: -5%; animation-delay: -1.5s; }
body.page-services .sv-hero__node--operate { bottom: 6%; left: 43%; animation-delay: -2.3s; }
body.page-services .sv-hero__node--grow { top: 45%; left: -5%; animation-delay: -3.2s; }

body.page-services .sv-index { position: relative; z-index: 5; border-top: 1px solid rgba(16,42,67,.12); border-bottom: 1px solid rgba(16,42,67,.12); background: rgba(255,255,255,.72); backdrop-filter: blur(18px); }
body.page-services .sv-index__inner { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); }
body.page-services .sv-index__inner > p { display: flex; align-items: center; min-height: 92px; margin: 0; color: #8795a4; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.page-services .sv-index a { position: relative; display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center; min-height: 92px; padding: 0 20px; border-left: 1px solid rgba(16,42,67,.1); overflow: hidden; }
body.page-services .sv-index a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--navy-900); transform: translateY(101%); transition: transform .4s var(--ease); }
body.page-services .sv-index a:hover::before, body.page-services .sv-index a:focus-visible::before { transform: translateY(0); }
body.page-services .sv-index a:hover, body.page-services .sv-index a:focus-visible { outline: 0; color: white; }
body.page-services .sv-index a span { color: var(--sv-blue); font-size: 9px; font-weight: 800; }
body.page-services .sv-index a strong { font-size: 14px; }
body.page-services .sv-index a i { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(16,42,67,.15); border-radius: 50%; color: var(--sv-blue); font-size: 14px; font-style: normal; transition: transform .3s; }
body.page-services .sv-index a:hover i { border-color: rgba(255,255,255,.25); color: var(--cyan); transform: rotate(45deg); }
body.page-services .sv-top { position: fixed; right: 26px; bottom: 26px; z-index: 86; display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 14px; border: 1px solid rgba(16,42,67,.14); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.82); box-shadow: 0 18px 45px rgba(16,42,67,.14); opacity: 1; backdrop-filter: blur(16px); transform: translateY(0); transition: opacity .35s, transform .35s, color .25s, background .25s; }
body.page-services.hero-active .sv-top { opacity: 0; pointer-events: none; transform: translateY(18px); }
body.page-services .sv-top span { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
body.page-services .sv-top b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--sv-blue); transition: transform .3s; }
body.page-services .sv-top:hover b { transform: translateY(-3px); }

body.page-services .service-chapter { position: relative; padding: 150px 0; overflow: hidden; background: white; scroll-margin-top: 72px; }
body.page-services .service-chapter--surface { background: var(--surface); }
body.page-services .service-chapter__head { display: grid; grid-template-columns: 90px 330px minmax(0,1fr); gap: 40px; align-items: end; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
body.page-services .service-chapter__number { align-self: start; color: var(--sv-blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
body.page-services .service-chapter__head div > p { margin: 0 0 5px; color: var(--sv-blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
body.page-services .service-chapter__head h2 { margin: 0; font-size: clamp(62px,6vw,88px); line-height: .95; letter-spacing: -.02em; font-weight: 500; }
body.page-services .service-chapter__head > p { max-width: 660px; margin: 0 0 3px; color: var(--muted); font-size: 16px; line-height: 1.8; }
body.page-services .service-chapter__body { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(70px,7vw,120px); align-items: start; margin-top: 90px; }
body.page-services .service-chapter__body--reverse .service-chapter__visual { order: 2; }
body.page-services .service-chapter__body--reverse .service-chapter__content { order: 1; }
body.page-services .service-chapter__visual { position: relative; margin: 0; overflow: hidden; background: #dce5ed; transition: transform .6s var(--ease); }
body.page-services .service-chapter__visual:hover { transform: translateY(-7px); }
body.page-services .service-chapter__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(3,7,12,.72)); pointer-events: none; }
body.page-services .service-chapter__visual img { width: 100%; aspect-ratio: 1.04; object-fit: cover; transform: translate3d(0,var(--scroll-shift),0) scale(1.1); transition: transform .35s linear; }
body.page-services .service-chapter__visual:hover img { transform: translate3d(0,var(--scroll-shift),0) scale(1.15); }
body.page-services .service-chapter__visual figcaption { position: absolute; right: 26px; bottom: 22px; left: 26px; z-index: 1; display: flex; justify-content: flex-end; color: white; }
body.page-services .service-chapter__visual figcaption span { display: none; }
body.page-services .service-chapter__visual figcaption strong { font-size: 12px; }
body.page-services .service-chapter__content { padding-top: 10px; }
body.page-services .service-chapter__statement { padding-bottom: 55px; border-bottom: 1px solid var(--line); }
body.page-services .service-chapter__statement small { color: var(--sv-blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
body.page-services .service-chapter__statement h3 { margin: 21px 0 0; font-size: clamp(34px,3.2vw,48px); line-height: 1.26; letter-spacing: -.055em; font-weight: 500; }
body.page-services .service-chapter__info { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 52px 0; border-bottom: 1px solid var(--line); }
body.page-services .service-chapter__info h4 { margin: 0 0 24px; font-size: 13px; }
body.page-services .service-chapter__info ul { margin: 0; padding: 0; list-style: none; }
body.page-services .service-chapter__info li { position: relative; margin-top: 11px; padding-left: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }
body.page-services .service-chapter__info li::before { content: ""; position: absolute; left: 0; top: .7em; width: 4px; height: 4px; border-radius: 50%; background: var(--sv-blue); }
body.page-services .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
body.page-services .service-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: #526170; background: rgba(255,255,255,.54); font-size: 11px; transition: color .25s, border-color .25s, transform .25s; }
body.page-services .service-tags span:hover { border-color: var(--sv-blue); color: var(--sv-blue); transform: translateY(-2px); }
body.page-services .service-outcome { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding-top: 30px; }
body.page-services .service-outcome span { color: var(--sv-blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
body.page-services .service-outcome p { max-width: 570px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

body.page-services .service-chapter--dark { color: white; background: var(--navy-950); }
body.page-services .service-chapter--dark::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px); background-size: 90px 90px; }
body.page-services .service-chapter__glow { position: absolute; top: -340px; right: -260px; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle,rgba(31,111,235,.18),transparent 68%); animation: sv-glow-drift 8s ease-in-out infinite alternate; }
body.page-services .service-chapter--dark .section-shell { position: relative; z-index: 1; }
body.page-services .service-chapter--dark .service-chapter__head, body.page-services .service-chapter--dark .service-chapter__statement, body.page-services .service-chapter--dark .service-chapter__info { border-color: rgba(255,255,255,.13); }
body.page-services .service-chapter--dark .service-chapter__head > p, body.page-services .service-chapter--dark .service-chapter__info li, body.page-services .service-chapter--dark .service-outcome p { color: rgba(255,255,255,.66); }
body.page-services .service-chapter--dark .service-tags span { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); }
body.page-services .service-chapter--dark .service-chapter__number, body.page-services .service-chapter--dark .service-chapter__head div > p, body.page-services .service-chapter--dark .service-chapter__statement small, body.page-services .service-chapter--dark .service-outcome span { color: var(--cyan); }

body.page-services .services-connect { position: relative; overflow: hidden; color: white; background: #050b12; }
body.page-services .services-connect::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 65% 20%,rgba(31,111,235,.16),transparent 35%),linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px); background-size: auto,90px 90px,90px 90px; animation: sv-grid-drift 16s linear infinite alternate; }
body.page-services .services-connect .section-shell { position: relative; z-index: 1; }
body.page-services .services-connect__head { display: grid; grid-template-columns: 260px 1fr; gap: 60px; margin-bottom: 95px; }
body.page-services .services-connect__head h2 { max-width: 1000px; margin: -12px 0 0; font-size: clamp(48px,5vw,72px); line-height: 1.2; letter-spacing: -.065em; font-weight: 400; }
body.page-services .services-connect__head h2 span { color: var(--cyan); }
body.page-services .services-connect__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.13); }
body.page-services .services-connect__grid article { position: relative; min-height: 260px; padding: 30px; border-right: 1px solid rgba(255,255,255,.13); transition: background .3s, transform .4s var(--ease); }
body.page-services .services-connect__grid article:hover { background: rgba(31,111,235,.13); transform: translateY(-8px); }
body.page-services .services-connect__grid article:last-child { border-right: 0; }
body.page-services .services-connect__grid article > span { position: absolute; top: 24px; right: 25px; color: var(--cyan); font-size: 9px; }
body.page-services .services-connect__grid small { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
body.page-services .services-connect__grid h3 { margin: 98px 0 17px; font-size: 23px; letter-spacing: -.04em; }
body.page-services .services-connect__grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }

body.page-services .services-cta { position: relative; min-height: 670px; overflow: hidden; color: white; background: #03070c; isolation: isolate; scroll-margin-top: 72px; }
body.page-services .services-cta__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
body.page-services .services-cta__media img { width: 100%; height: 112%; object-fit: cover; object-position: 67% center; opacity: .54; transform: translate3d(0,var(--scroll-shift),0) scale(1.06); transition: transform .4s linear; }
body.page-services .services-cta__media > div { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,7,12,.99),rgba(3,7,12,.78) 52%,rgba(3,7,12,.42)),linear-gradient(180deg,rgba(3,7,12,.2),rgba(3,7,12,.82)); }
body.page-services .services-cta__inner { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(340px,.8fr); gap: 90px; align-items: end; min-height: inherit; padding: 135px 0 115px; }
body.page-services .services-cta h2 { margin: 38px 0 0; font-size: clamp(52px,5vw,76px); line-height: 1.12; letter-spacing: -.07em; font-weight: 300; }
body.page-services .services-cta h2 span { color: var(--cyan); }
body.page-services .services-cta__action { padding: 38px 0 3px; border-top: 1px solid rgba(255,255,255,.18); }
body.page-services .services-cta__action > p { margin: 0 0 36px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
body.page-services .services-cta__action > a { display: inline-flex; align-items: center; gap: 18px; font-size: 18px; font-weight: 600; }
body.page-services .services-cta__action > a span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--navy-950); background: var(--cyan); transition: transform .3s, box-shadow .3s; }
body.page-services .services-cta__action > a:hover span { transform: rotate(45deg) scale(1.08); box-shadow: 0 0 28px rgba(56,189,248,.42); }
body.page-services .services-cta__action > div { display: flex; gap: 28px; margin-top: 65px; color: rgba(255,255,255,.48); font-size: 12px; }

@keyframes sv-orbit-spin { to { transform: rotate(360deg); } }
@keyframes sv-core-breathe { 0%,100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 0 0 13px rgba(31,111,235,.08), 0 28px 65px rgba(16,42,67,.32); } 50% { transform: translate(-50%,-50%) scale(1.045); box-shadow: 0 0 0 18px rgba(31,111,235,.04), 0 34px 80px rgba(31,111,235,.34); } }
@keyframes sv-core-ring { 0%,100% { opacity: .45; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes sv-node-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes sv-glow-drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-70px,55px,0) scale(1.14); } }
@keyframes sv-grid-drift { from { background-position: 0 0,0 0,0 0; } to { background-position: 0 0,45px 45px,45px 45px; } }

@media (min-width: 901px) and (max-width: 1320px) {
  body.page-services .service-chapter .section-shell, body.page-services .services-connect .section-shell, body.page-services .services-cta .section-shell { padding-right: 70px; }
  body.page-services .service-chapter__head { grid-template-columns: 70px 260px minmax(0,1fr); gap: 30px; }
}

@media (max-width: 1180px) {
  body.page-services .sv-hero__inner { grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr); gap: 55px; }
  body.page-services .sv-hero__diagram { width: min(39vw,440px); }
  body.page-services .sv-index__inner { grid-template-columns: .9fr repeat(4,1fr); }
  body.page-services .sv-index a { padding: 0 13px; }
  body.page-services .service-chapter__body { gap: 58px; }
  body.page-services .service-chapter__info { gap: 30px; }
  body.page-services .services-connect__head { grid-template-columns: 190px 1fr; gap: 40px; }
  body.page-services .services-connect__grid article { padding: 25px 22px; }
  body.page-services .services-cta__inner { gap: 60px; }
}

@media (max-width: 900px) {
  body.page-services .site-header:not(.is-dark-section) .menu-toggle { border-color: rgba(16,42,67,.22); color: var(--ink); background: rgba(255,255,255,.62); }
  body.page-services .site-header.menu-active .menu-toggle { border-color: rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.08); }
  body.page-services .sv-hero__inner { grid-template-columns: 1fr; gap: 45px; min-height: auto; padding: 130px 0 65px; }
  body.page-services .sv-breadcrumb { margin-bottom: 34px; }
  body.page-services .sv-hero__copy { max-width: 720px; }
  body.page-services .sv-hero__diagram { width: min(66vw,460px); justify-self: center; }
  body.page-services .sv-index__inner { grid-template-columns: repeat(4,1fr); }
  body.page-services .sv-index__inner > p { display: none; }
  body.page-services .service-chapter { padding: 115px 0; }
  body.page-services .service-chapter__head { grid-template-columns: 55px 1fr; gap: 25px; }
  body.page-services .service-chapter__head > p { grid-column: 2; margin-top: 15px; }
  body.page-services .service-chapter__body { grid-template-columns: 1fr; gap: 65px; margin-top: 65px; }
  body.page-services .service-chapter__visual, body.page-services .service-chapter__body--reverse .service-chapter__visual { order: 1; }
  body.page-services .service-chapter__content, body.page-services .service-chapter__body--reverse .service-chapter__content { order: 2; }
  body.page-services .service-chapter__visual img { aspect-ratio: 1.5; }
  body.page-services .services-connect__head { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
  body.page-services .services-connect__grid { grid-template-columns: repeat(2,1fr); }
  body.page-services .services-connect__grid article:nth-child(2) { border-right: 0; }
  body.page-services .services-connect__grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  body.page-services .services-cta__inner { grid-template-columns: 1fr; gap: 60px; align-content: center; padding: 120px 0 100px; }
  body.page-services .services-cta__action { max-width: 600px; }
}

@media (max-width: 620px) {
  body.page-services .sv-hero::before { top: 92px; font-size: 105px; }
  body.page-services .sv-hero__inner { padding: 125px 0 52px; }
  body.page-services .sv-breadcrumb { margin-bottom: 28px; }
  body.page-services .sv-hero h1 { font-size: 41px; line-height: 1.2; }
  body.page-services .sv-hero h1 br, body.page-services .sv-hero__description br { display: none; }
  body.page-services .sv-hero__description { margin-top: 24px; font-size: 14px; }
  body.page-services .sv-hero__diagram { width: 330px; max-width: 92vw; }
  body.page-services .sv-hero__core { width: 112px; height: 112px; }
  body.page-services .sv-hero__node { min-width: 88px; padding: 8px 10px; }
  body.page-services .sv-hero__node strong { font-size: 11px; }
  body.page-services .sv-index__inner { grid-template-columns: repeat(2,1fr); }
  body.page-services .sv-index a { min-height: 62px; padding: 0 13px; }
  body.page-services .sv-index a:nth-of-type(-n+2) { border-bottom: 1px solid rgba(16,42,67,.1); }
  body.page-services .sv-top { right: 16px; bottom: 16px; }
  body.page-services .service-chapter { padding: 92px 0; }
  body.page-services .service-chapter__head { grid-template-columns: 35px 1fr; gap: 15px; padding-bottom: 28px; }
  body.page-services .service-chapter__head h2 { font-size: 54px; }
  body.page-services .service-chapter__head > p { font-size: 14px; }
  body.page-services .service-chapter__body { gap: 47px; margin-top: 47px; }
  body.page-services .service-chapter__visual img { aspect-ratio: 1.12; }
  body.page-services .service-chapter__statement { padding-bottom: 38px; }
  body.page-services .service-chapter__statement h3 { margin-top: 17px; font-size: 33px; }
  body.page-services .service-chapter__statement h3 br { display: none; }
  body.page-services .service-chapter__info { grid-template-columns: 1fr; gap: 38px; padding: 38px 0; }
  body.page-services .service-tags span { font-size: 12px; }
  body.page-services .service-outcome { grid-template-columns: 1fr; gap: 12px; }
  body.page-services .services-connect { padding: 95px 0; }
  body.page-services .services-connect__head h2 { margin-top: 0; font-size: 40px; }
  body.page-services .services-connect__head h2 br { display: none; }
  body.page-services .services-connect__grid { grid-template-columns: 1fr; }
  body.page-services .services-connect__grid article { min-height: 205px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  body.page-services .services-connect__grid article:last-child { border-bottom: 0; }
  body.page-services .services-connect__grid h3 { margin-top: 70px; }
  body.page-services .services-cta { min-height: 660px; }
  body.page-services .services-cta__media img { width: 180%; max-width: none; object-position: 64% center; }
  body.page-services .services-cta__inner { padding: 100px 0 85px; }
  body.page-services .services-cta h2 { margin-top: 28px; font-size: 43px; }
  body.page-services .services-cta__action > div { flex-direction: column; gap: 5px; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-services .sv-hero__orbit, body.page-services .sv-hero__core, body.page-services .sv-hero__node, body.page-services .service-chapter__glow, body.page-services .services-connect::before { animation: none; }
  [data-scroll-motion] { transform: none !important; }
}

/* Works page — page-scoped styles */
body.page-works { --wk-blue: #2878ff; --wk-cyan: #5bd6ff; background: white; }
body.page-works .desktop-nav a[aria-current="page"] { opacity: 1; }
body.page-works .desktop-nav a[aria-current="page"]::after { right: 0; }
body.page-works .mobile-nav a[aria-current="page"] { color: var(--cyan); }

body.page-works .works-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #05090e 0%, #071522 54%, #0b2134 100%);
  isolation: isolate;
}
body.page-works .works-hero::before {
  content: "WORKS";
  position: absolute;
  top: 68px;
  left: 50%;
  z-index: -1;
  color: rgba(255,255,255,.025);
  font-size: clamp(170px,21vw,330px);
  line-height: .9;
  letter-spacing: -.09em;
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}
body.page-works .works-hero::after {
  content: "";
  position: absolute;
  top: -28%;
  right: -12%;
  z-index: -2;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,120,255,.22), transparent 66%);
  filter: blur(20px);
  animation: works-glow-drift 10s ease-in-out infinite alternate;
}
body.page-works .works-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}
body.page-works .works-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(420px,.85fr);
  gap: clamp(70px,8vw,140px);
  align-items: center;
  min-height: 760px;
  padding: 145px 0 105px;
}
body.page-works .works-breadcrumb { display: flex; align-items: center; gap: 14px; margin-bottom: 60px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
body.page-works .works-breadcrumb i { display: block; width: 28px; height: 1px; background: rgba(255,255,255,.26); }
body.page-works .works-breadcrumb strong { color: var(--wk-cyan); }
body.page-works .works-hero__eyebrow { margin: 0 0 22px; color: var(--wk-cyan); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
body.page-works .works-hero h1 { margin: 0; font-size: clamp(58px,5.4vw,82px); line-height: 1.08; letter-spacing: -.075em; font-weight: 400; }
body.page-works .works-hero h1 span { color: #6ad8ff; }
body.page-works .works-hero__description { margin: 34px 0 0; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.9; }
body.page-works .works-hero__showcase {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  width: min(39vw,520px);
  aspect-ratio: 1;
  justify-self: end;
  transform: translate3d(var(--pointer-x),var(--pointer-y),0);
  transition: transform .55s var(--ease);
}
body.page-works .works-hero__showcase::before, body.page-works .works-hero__showcase::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(91,214,255,.14); border-radius: 50%; animation: works-orbit 24s linear infinite; }
body.page-works .works-hero__showcase::after { inset: 24%; border-style: dashed; border-color: rgba(91,214,255,.2); animation-direction: reverse; animation-duration: 17s; }
body.page-works .works-hero__frame { position: absolute; z-index: 2; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #102a43; box-shadow: 0 35px 80px rgba(0,0,0,.38); transition: transform .55s var(--ease), filter .45s; }
body.page-works .works-hero__frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
body.page-works .works-hero__frame--back { top: 4%; right: 0; width: 45%; transform: rotate(8deg); filter: brightness(.58) saturate(.75); }
body.page-works .works-hero__frame--middle { bottom: 3%; left: 0; width: 43%; transform: rotate(-8deg); filter: brightness(.7) saturate(.8); }
body.page-works .works-hero__frame--front { top: 17%; left: 20%; z-index: 3; width: 60%; }
body.page-works .works-hero__showcase:hover .works-hero__frame--back { transform: translate(9px,-7px) rotate(10deg); }
body.page-works .works-hero__showcase:hover .works-hero__frame--middle { transform: translate(-8px,8px) rotate(-10deg); }
body.page-works .works-hero__showcase:hover .works-hero__frame--front { transform: translateY(-7px); }
body.page-works .works-hero__frame figcaption { position: absolute; right: 14px; bottom: 12px; left: 14px; display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.28); color: white; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
body.page-works .works-hero__showcase > p { position: absolute; right: 3%; bottom: 3%; z-index: 4; margin: 0; color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.45; letter-spacing: .14em; text-align: right; text-transform: uppercase; }
body.page-works .works-hero__meta { position: absolute; right: 0; bottom: 28px; left: 0; display: flex; gap: 32px; align-items: center; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
body.page-works .works-hero__meta strong { margin-left: auto; color: rgba(255,255,255,.65); font-weight: 600; }

body.page-works .works-top { position: fixed; right: 26px; bottom: 26px; z-index: 86; display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 14px; border: 1px solid rgba(16,42,67,.14); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.84); box-shadow: 0 18px 45px rgba(16,42,67,.14); opacity: 1; backdrop-filter: blur(16px); transform: translateY(0); transition: opacity .35s, transform .35s; }
body.page-works.hero-active .works-top { opacity: 0; pointer-events: none; transform: translateY(18px); }
body.page-works .works-top span { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
body.page-works .works-top b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--wk-blue); transition: transform .3s; }
body.page-works .works-top:hover b { transform: translateY(-3px); }

body.page-works .works-catalog { padding: 150px 0 165px; background: #fff; }
body.page-works .works-catalog__head { display: grid; grid-template-columns: 1fr .62fr; gap: 90px; align-items: end; padding-bottom: 70px; border-bottom: 1px solid var(--line); }
body.page-works .works-catalog__head > div > p { margin: 0 0 26px; color: var(--wk-blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
body.page-works .works-catalog__head h2 { margin: 0; font-size: clamp(50px,5vw,72px); line-height: 1.14; letter-spacing: -.065em; font-weight: 400; }
body.page-works .works-catalog__head h2 span { color: var(--wk-blue); }
body.page-works .works-catalog__summary { display: grid; grid-template-columns: 105px 1fr; gap: 35px; align-items: end; padding-bottom: 8px; }
body.page-works .works-catalog__summary strong { color: var(--wk-blue); font-size: 82px; line-height: .8; letter-spacing: -.08em; font-weight: 300; }
body.page-works .works-catalog__summary p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
body.page-works .works-page-filters { display: flex; gap: 0; margin: 58px 0 15px; padding: 0; border-bottom: 1px solid var(--line); }
body.page-works .works-page-filters button { display: flex; gap: 9px; align-items: center; padding: 0 26px 17px 0; border: 0; border-radius: 0; color: #7c8996; background: transparent; font-size: 14px; }
body.page-works .works-page-filters button + button { padding-left: 26px; border-left: 1px solid var(--line); }
body.page-works .works-page-filters button span { color: #a9b4bf; font-size: 8px; }
body.page-works .works-page-filters button:hover, body.page-works .works-page-filters button.is-active { color: var(--wk-blue); background: transparent; }
body.page-works .works-page-filters button.is-active { box-shadow: inset 0 -2px 0 var(--wk-blue); }
body.page-works .works-project { display: grid; grid-template-columns: minmax(0,1.18fr) minmax(330px,.82fr); gap: clamp(65px,7vw,115px); align-items: center; padding: 90px 0; border-bottom: 1px solid var(--line); }
body.page-works .works-project.is-hidden { display: none; }
body.page-works .works-project--reverse { grid-template-columns: minmax(330px,.82fr) minmax(0,1.18fr); }
body.page-works .works-project--reverse .works-project__media { order: 2; }
body.page-works .works-project--reverse .works-project__info { order: 1; }
body.page-works .works-project__media { position: relative; margin: 0; overflow: hidden; background: var(--surface); }
body.page-works .works-project__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 58%,rgba(3,7,12,.34)); pointer-events: none; }
body.page-works .works-project__media img { width: 100%; aspect-ratio: 1.35; object-fit: cover; transform: translate3d(0,var(--scroll-shift),0) scale(1.08); transition: transform .6s var(--ease), filter .45s; }
body.page-works .works-project:hover .works-project__media img { transform: translate3d(0,var(--scroll-shift),0) scale(1.13); filter: saturate(1.06); }
body.page-works .works-project__media > span { position: absolute; top: 22px; left: 22px; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: white; background: rgba(7,21,34,.28); font-size: 9px; font-weight: 800; backdrop-filter: blur(10px); }
body.page-works .works-project__info { position: relative; padding: 10px 0 5px; }
body.page-works .works-project__info > div { display: flex; justify-content: space-between; align-items: center; padding-bottom: 21px; border-bottom: 1px solid var(--line); color: var(--wk-blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
body.page-works .works-project__info > div small { color: #9aa5b0; font-size: 9px; font-weight: 700; }
body.page-works .works-project__info h3 { margin: 32px 0 18px; font-size: clamp(43px,4vw,62px); line-height: 1.05; letter-spacing: -.065em; font-weight: 450; }
body.page-works .works-project__info > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
body.page-works .works-project__info ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 65px 0 0; padding: 0; list-style: none; }
body.page-works .works-project__info li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #61707e; font-size: 12px; }
body.page-works .works-project__link { position: absolute; right: 0; bottom: 4px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--wk-blue); font-size: 19px; transition: color .25s, background .25s, transform .3s; }
body.page-works .works-project__link:hover, body.page-works .works-project__link:focus-visible { outline: 0; color: white; background: var(--wk-blue); transform: rotate(45deg); }

body.page-works .works-principle { position: relative; overflow: hidden; padding: 145px 0; color: white; background: var(--navy-950); }
body.page-works .works-principle::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg,transparent,black 25%,black 75%,transparent); }
body.page-works .works-principle__inner { position: relative; }
body.page-works .works-principle__inner > p { margin: 0 0 35px; color: var(--wk-cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
body.page-works .works-principle h2 { max-width: 910px; margin: 0; font-size: clamp(52px,5.2vw,76px); line-height: 1.14; letter-spacing: -.065em; font-weight: 300; }
body.page-works .works-principle h2 span { color: var(--wk-cyan); }
body.page-works .works-principle__list { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 100px; border-top: 1px solid rgba(255,255,255,.14); }
body.page-works .works-principle__list article { min-height: 250px; padding: 30px 40px 30px 0; border-right: 1px solid rgba(255,255,255,.14); }
body.page-works .works-principle__list article + article { padding-left: 40px; }
body.page-works .works-principle__list article:last-child { border-right: 0; }
body.page-works .works-principle__list span { color: var(--wk-cyan); font-size: 9px; font-weight: 800; }
body.page-works .works-principle__list h3 { margin: 92px 0 13px; font-size: 23px; font-weight: 500; letter-spacing: -.025em; }
body.page-works .works-principle__list p { max-width: 310px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.75; }

body.page-works .works-cta { position: relative; min-height: 740px; overflow: hidden; color: white; background: #05080c; isolation: isolate; scroll-margin-top: 72px; }
body.page-works .works-cta__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
body.page-works .works-cta__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 69% center; opacity: .45; transform: translate3d(0,var(--scroll-shift),0) scale(1.07); filter: saturate(.8) brightness(.7); }
body.page-works .works-cta__media div { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,8,12,.99) 0%,rgba(5,8,12,.84) 54%,rgba(5,8,12,.55) 100%),linear-gradient(180deg,rgba(5,8,12,.3),transparent 48%,rgba(5,8,12,.85)); }
body.page-works .works-cta__inner { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); gap: 100px; align-items: center; min-height: 740px; padding: 130px 0; }
body.page-works .works-cta h2 { margin: 36px 0 0; font-size: clamp(54px,5.4vw,78px); line-height: 1.13; letter-spacing: -.065em; font-weight: 300; }
body.page-works .works-cta h2 span { color: var(--wk-cyan); }
body.page-works .works-cta__action { max-width: 470px; }
body.page-works .works-cta__action > p { margin: 0 0 38px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.85; }
body.page-works .works-cta__action > a { display: flex; justify-content: space-between; align-items: center; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font-size: 17px; font-weight: 650; }
body.page-works .works-cta__action > a span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--navy-950); background: var(--wk-cyan); transition: transform .3s; }
body.page-works .works-cta__action > a:hover span { transform: rotate(45deg) scale(1.08); }
body.page-works .works-cta__action > div { display: flex; gap: 28px; margin-top: 55px; color: rgba(255,255,255,.48); font-size: 12px; }

@keyframes works-glow-drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-60px,45px,0) scale(1.12); } }
@keyframes works-orbit { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  body.page-works .works-hero__inner { grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); gap: 60px; }
  body.page-works .works-hero__showcase { width: min(40vw,470px); }
  body.page-works .works-project { grid-template-columns: minmax(0,1.08fr) minmax(300px,.92fr); gap: 65px; }
  body.page-works .works-project--reverse { grid-template-columns: minmax(300px,.92fr) minmax(0,1.08fr); }
  body.page-works .works-cta__inner { gap: 70px; }
}

@media (max-width: 900px) {
  body.page-works .works-hero__inner { grid-template-columns: 1fr; gap: 60px; min-height: auto; padding: 135px 0 115px; }
  body.page-works .works-breadcrumb { margin-bottom: 42px; }
  body.page-works .works-hero__copy { max-width: 720px; }
  body.page-works .works-hero__showcase { width: min(66vw,470px); justify-self: center; }
  body.page-works .works-hero__meta { bottom: 24px; }
  body.page-works .works-catalog { padding: 115px 0 125px; }
  body.page-works .works-catalog__head { grid-template-columns: 1fr; gap: 55px; }
  body.page-works .works-catalog__summary { max-width: 570px; }
  body.page-works .works-project, body.page-works .works-project--reverse { grid-template-columns: 1fr; gap: 48px; padding: 72px 0; }
  body.page-works .works-project--reverse .works-project__media, body.page-works .works-project--reverse .works-project__info { order: initial; }
  body.page-works .works-project__media img { aspect-ratio: 1.55; }
  body.page-works .works-project__info { max-width: 680px; }
  body.page-works .works-principle { padding: 115px 0; }
  body.page-works .works-principle__list article { min-height: 230px; padding-right: 24px; }
  body.page-works .works-principle__list article + article { padding-left: 24px; }
  body.page-works .works-cta__inner { grid-template-columns: 1fr; gap: 65px; align-content: center; padding: 115px 0 100px; }
  body.page-works .works-cta__action { max-width: 620px; }
}

@media (max-width: 620px) {
  body.page-works .works-hero::before { top: 96px; font-size: 112px; }
  body.page-works .works-hero__inner { gap: 48px; padding: 125px 0 100px; }
  body.page-works .works-breadcrumb { margin-bottom: 30px; }
  body.page-works .works-hero h1 { font-size: 43px; line-height: 1.16; }
  body.page-works .works-hero__description { margin-top: 25px; font-size: 14px; }
  body.page-works .works-hero__description br { display: none; }
  body.page-works .works-hero__showcase { width: 330px; max-width: 92vw; }
  body.page-works .works-hero__meta { gap: 15px; font-size: 7px; }
  body.page-works .works-hero__meta span:nth-child(3) { display: none; }
  body.page-works .works-hero__meta strong { font-size: 7px; }
  body.page-works .works-top { right: 16px; bottom: 16px; }
  body.page-works .works-catalog { padding: 92px 0 100px; }
  body.page-works .works-catalog__head { gap: 42px; padding-bottom: 50px; }
  body.page-works .works-catalog__head h2 { font-size: 43px; }
  body.page-works .works-catalog__summary { grid-template-columns: 72px 1fr; gap: 22px; }
  body.page-works .works-catalog__summary strong { font-size: 62px; }
  body.page-works .works-catalog__summary p { font-size: 14px; }
  body.page-works .works-page-filters { width: 100%; margin-top: 42px; overflow-x: auto; scrollbar-width: none; }
  body.page-works .works-page-filters::-webkit-scrollbar { display: none; }
  body.page-works .works-page-filters button { flex: 0 0 auto; padding-right: 18px; }
  body.page-works .works-page-filters button + button { padding-left: 18px; }
  body.page-works .works-project, body.page-works .works-project--reverse { gap: 34px; padding: 55px 0; }
  body.page-works .works-project__media img { aspect-ratio: 1.08; }
  body.page-works .works-project__media > span { top: 14px; left: 14px; width: 34px; height: 34px; }
  body.page-works .works-project__info h3 { margin-top: 26px; font-size: 40px; }
  body.page-works .works-project__info > p { font-size: 13px; }
  body.page-works .works-project__info ul { margin-top: 27px; margin-right: 58px; }
  body.page-works .works-project__link { width: 44px; height: 44px; }
  body.page-works .works-principle { padding: 95px 0; }
  body.page-works .works-principle h2 { font-size: 42px; }
  body.page-works .works-principle h2 br { display: none; }
  body.page-works .works-principle__list { grid-template-columns: 1fr; margin-top: 65px; }
  body.page-works .works-principle__list article, body.page-works .works-principle__list article + article { min-height: 185px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  body.page-works .works-principle__list article:last-child { border-bottom: 0; }
  body.page-works .works-principle__list h3 { margin-top: 55px; }
  body.page-works .works-cta { min-height: 660px; }
  body.page-works .works-cta__media img { width: 180%; object-position: 64% center; }
  body.page-works .works-cta__inner { padding: 100px 0 85px; }
  body.page-works .works-cta h2 { margin-top: 28px; font-size: 43px; }
  body.page-works .works-cta__action > div { flex-direction: column; gap: 5px; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-works .works-hero::after, body.page-works .works-hero__showcase::before, body.page-works .works-hero__showcase::after { animation: none; }
}

/* Process page */
body.page-process { color: var(--ink); background: #fff; }
body.page-process .site-header:not(.is-dark-section) { color: var(--ink); border-color: rgba(16,42,67,.09); }
body.page-process .site-header:not(.is-dark-section) .brand-logo--dark { opacity: 1; }
body.page-process .site-header:not(.is-dark-section) .brand-logo--light { opacity: 0; }
body.page-process .site-header:not(.is-dark-section) .header-cta { color: var(--ink); border-color: rgba(16,42,67,.17); background: rgba(255,255,255,.58); }
body.page-process .site-header:not(.is-dark-section) .header-cta svg { color: white; background: var(--navy-900); }
body.page-process .site-header.menu-active { color: white; }
body.page-process .site-header.menu-active .brand-logo--dark { opacity: 0; }
body.page-process .site-header.menu-active .brand-logo--light { opacity: 1; }
body.page-process .desktop-nav a[aria-current="page"] { opacity: 1; }
body.page-process .desktop-nav a[aria-current="page"]::after { right: 0; }
body.page-process .mobile-nav a[aria-current="page"] { color: var(--cyan); }

body.page-process .process-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg,#f8fbfe 0%,#f0f6fb 54%,#e9f2f9 100%);
  isolation: isolate;
}
body.page-process .process-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -25%;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(31,111,235,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(31,111,235,.025),0 0 0 16vw rgba(31,111,235,.018);
}
body.page-process .process-hero__word {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: -1;
  color: rgba(16,42,67,.035);
  font-size: clamp(150px,18vw,280px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}
body.page-process .process-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(440px,.82fr);
  align-items: center;
  gap: clamp(70px,8vw,140px);
  min-height: 790px;
  padding: 128px 0 96px;
}
body.page-process .process-hero__copy { position: relative; z-index: 2; }
body.page-process .process-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 72px;
  color: #7890a6;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-process .process-breadcrumb i { width: 28px; height: 1px; background: rgba(16,42,67,.25); }
body.page-process .process-breadcrumb strong { color: var(--blue); font-weight: 700; }
body.page-process .process-hero__eyebrow {
  margin-bottom: 23px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-process .process-hero h1 {
  max-width: 700px;
  font-size: clamp(54px,5.2vw,82px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.065em;
}
body.page-process .process-hero h1 span { color: var(--blue); }
body.page-process .process-hero__description {
  margin-top: 34px;
  color: #61788d;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: -.015em;
}
body.page-process .process-hero__map {
  position: relative;
  width: min(100%,520px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 78% 15%,rgba(56,189,248,.17),transparent 31%),
    linear-gradient(145deg,#0e3153 0%,#071b2f 58%,#061421 100%);
  box-shadow: 0 34px 80px rgba(7,21,34,.2);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .25s ease-out;
}
body.page-process .process-hero__map::after {
  content: "APCOM / PROCESS";
  position: absolute;
  right: 28px;
  bottom: 23px;
  color: rgba(255,255,255,.28);
  font-size: 8px;
  letter-spacing: .22em;
}
body.page-process .process-hero__map-grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(135deg,#000,transparent 86%);
}
body.page-process .process-hero__path { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(135,190,230,.25); stroke-width: 2; }
body.page-process .process-hero__path-flow {
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 3 12;
  filter: drop-shadow(0 0 7px rgba(56,189,248,.65));
  animation: process-flow-line 7s linear infinite;
}
body.page-process .process-hero__node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  width: 162px;
  padding: 16px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(8,29,48,.78);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
body.page-process .process-hero__node span {
  grid-row: 1/3;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #061827;
  background: var(--cyan);
  font-size: 8px;
  font-weight: 800;
}
body.page-process .process-hero__node small { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
body.page-process .process-hero__node strong { margin-top: 2px; font-size: 14px; letter-spacing: -.02em; }
body.page-process .process-hero__node--one { top: 13%; left: 7%; }
body.page-process .process-hero__node--two { top: 36%; left: 35%; }
body.page-process .process-hero__node--three { top: 57%; left: 18%; }
body.page-process .process-hero__node--four { right: 7%; bottom: 11%; }
body.page-process .process-hero__runner {
  fill: white;
  filter: drop-shadow(0 0 6px rgba(56,189,248,.9));
}
body.page-process .process-hero__waypoint { fill: rgba(56,189,248,.85); }
body.page-process .process-hero__ring { fill: none; stroke: rgba(56,189,248,.55); stroke-width: 1.5; }
body.page-process .process-hero__corner { position: absolute; z-index: 1; width: 16px; height: 16px; border: 1.5px solid rgba(255,255,255,.3); }
body.page-process .process-hero__corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
body.page-process .process-hero__corner--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
body.page-process .process-hero__corner--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
body.page-process .process-hero__corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
body.page-process .process-hero__cross { position: absolute; z-index: 1; color: rgba(255,255,255,.28); font-size: 14px; font-weight: 400; line-height: 1; }
body.page-process .process-hero__cross--a { top: 18%; left: 72%; }
body.page-process .process-hero__cross--b { top: 44%; left: 9%; }
body.page-process .process-hero__cross--c { top: 66%; left: 58%; }
body.page-process .process-hero__maplabel { position: absolute; z-index: 1; top: 19px; left: 40px; color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .22em; }
body.page-process .process-hero__sweep { position: absolute; inset: 0; z-index: 0; border-radius: inherit; background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, transparent 305deg, rgba(56,189,248,.09) 340deg, transparent 360deg); animation: process-sweep 16s linear infinite; pointer-events: none; }
@keyframes process-sweep { to { transform: rotate(360deg); } }
body.page-process .process-hero__footer {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #8195a7;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.page-process .process-hero__footer span { display: flex; align-items: center; gap: 25px; }
body.page-process .process-hero__footer span::after { content: ""; width: 24px; height: 1px; background: rgba(16,42,67,.18); }
body.page-process .process-hero__footer strong { margin-left: auto; color: var(--blue); font-size: 8px; }
body.page-process .process-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20,89,199,.26);
  font-size: 13px;
  transition: opacity .3s,visibility .3s,transform .3s;
}
body.page-process .process-top b { display: none; }
body.page-process.hero-active .process-top { visibility: hidden; opacity: 0; transform: translateY(12px); }

body.page-process .process-overview { padding: 145px 0 105px; background: white; }
body.page-process .process-overview__head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.52fr); align-items: end; gap: 90px; }
body.page-process .process-overview__head > div > p,
body.page-process .process-values__head > p {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
body.page-process .process-overview__head h2,
body.page-process .process-values__head h2 {
  font-size: clamp(44px,4.5vw,68px);
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: -.055em;
}
body.page-process .process-overview__head h2 span { color: var(--blue); }
body.page-process .process-overview__head > p { padding-bottom: 5px; color: #667b8f; font-size: 14px; line-height: 1.85; }
body.page-process .process-flow { display: grid; grid-template-columns: repeat(4,1fr); margin: 90px 0 0; padding: 0; border-top: 1px solid #dce5ed; border-bottom: 1px solid #dce5ed; list-style: none; }
body.page-process .process-flow li + li { border-left: 1px solid #dce5ed; }
body.page-process .process-flow a { position: relative; display: flex; min-height: 205px; flex-direction: column; padding: 28px 30px; transition: color .3s,background .3s; }
body.page-process .process-flow a:hover { color: white; background: var(--blue); }
body.page-process .process-flow span { color: var(--blue); font-size: 9px; font-weight: 800; }
body.page-process .process-flow a:hover span,body.page-process .process-flow a:hover small { color: rgba(255,255,255,.65); }
body.page-process .process-flow strong { margin-top: 53px; font-size: 24px; letter-spacing: -.035em; }
body.page-process .process-flow small { margin-top: 7px; color: #8193a4; font-size: 11px; }
body.page-process .process-flow i { position: absolute; right: 28px; bottom: 28px; font-style: normal; transition: transform .3s; }
body.page-process .process-flow a:hover i { transform: translateY(5px); }

body.page-process .process-stage { padding: 155px 0 165px; overflow: hidden; scroll-margin-top: 70px; background: white; }
body.page-process .process-stage--surface { background: #f3f7fa; }
body.page-process .process-stage--dark { color: white; background: #071a2c; }
body.page-process .process-stage__head {
  display: grid;
  grid-template-columns: 54px minmax(300px,1fr) minmax(320px,.62fr);
  align-items: end;
  gap: 38px;
  padding-bottom: 48px;
  border-bottom: 1px solid #dce5ed;
}
body.page-process .process-stage--dark .process-stage__head { border-color: rgba(255,255,255,.15); }
body.page-process .process-stage__head > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 9px; font-weight: 800; }
body.page-process .process-stage__head div p { margin-bottom: 8px; color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
body.page-process .process-stage--dark .process-stage__head div p { color: var(--cyan); }
body.page-process .process-stage__head h2 { font-size: clamp(54px,5.2vw,78px); font-weight: 650; line-height: .95; letter-spacing: -.06em; }
body.page-process .process-stage__head > p { color: #687d90; font-size: 14px; line-height: 1.8; }
body.page-process .process-stage--dark .process-stage__head > p { color: rgba(255,255,255,.55); }
body.page-process .process-stage__body { display: grid; grid-template-columns: minmax(420px,.94fr) minmax(0,1.06fr); align-items: center; gap: clamp(70px,8vw,135px); padding-top: 86px; }
body.page-process .process-stage__body--reverse { grid-template-columns: minmax(0,1.06fr) minmax(420px,.94fr); }
body.page-process .process-stage__body--reverse .process-stage__visual { order: 2; }
body.page-process .process-stage__visual {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg,#dce9f3,#eef5fa);
  box-shadow: inset 0 0 0 1px rgba(16,42,67,.07);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .25s ease-out;
}
body.page-process .process-stage__visual::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(31,111,235,.1);
  box-shadow: 0 0 0 45px rgba(31,111,235,.045),0 0 0 90px rgba(31,111,235,.025);
}
body.page-process .process-stage__visual--design { background: linear-gradient(145deg,#e7edf3,#dfe9f1); }
body.page-process .process-stage__visual--deliver { background: linear-gradient(145deg,#123b61,#0a2640); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
body.page-process .process-stage__visual--evolve { background: linear-gradient(145deg,#e4f2f4,#edf6fa); }
body.page-process .process-board {
  position: absolute;
  inset: 11%;
  z-index: 2;
  overflow: hidden;
  padding: 0 7.5% 7%;
  border: 1px solid rgba(16,42,67,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 25px 60px rgba(7,21,34,.14);
}
body.page-process .process-board__top {
  display: flex;
  height: 14%;
  align-items: center;
  margin: 0 -9% 7%;
  padding: 0 8%;
  border-bottom: 1px solid #e4ebf1;
  color: #61778a;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.page-process .process-board__top span { margin-right: auto; }
body.page-process .process-board__top i { width: 5px; height: 5px; margin-left: 5px; border-radius: 50%; background: #c4d1dc; }
body.page-process .process-board__top em { margin-right: 10px; color: #9fb0be; font-size: 7px; font-style: normal; letter-spacing: .12em; }
body.page-process .process-board--notes article { position: relative; margin-top: 8px; padding: 14px 42px 13px 14px; border: 1px solid #dce6ee; border-radius: 9px; background: #f8fafc; }
body.page-process .process-board--notes article.is-focus { color: white; border-color: var(--blue); background: var(--blue); transform: translateX(12px); }
body.page-process .process-board--notes small { color: #8294a5; font-size: 7px; text-transform: uppercase; }
body.page-process .process-board--notes .is-focus small { color: rgba(255,255,255,.6); }
body.page-process .process-board--notes p { margin-top: 4px; font-size: clamp(9px,.8vw,12px); font-weight: 600; letter-spacing: -.03em; }
body.page-process .process-board--notes b { position: absolute; top: 50%; right: 14px; color: #a6b5c1; font-size: 8px; transform: translateY(-50%); }
body.page-process .process-board--notes .is-focus b { color: rgba(255,255,255,.65); }
body.page-process .process-signal { position: absolute; right: 5%; bottom: 9%; z-index: 3; display: flex; height: 55px; align-items: end; gap: 4px; padding: 12px; border-radius: 10px; background: #071a2c; box-shadow: 0 12px 25px rgba(7,21,34,.2); }
body.page-process .process-signal i { display: block; width: 3px; height: 30%; border-radius: 4px; background: var(--cyan); animation: process-signal 1.7s ease-in-out infinite alternate; }
body.page-process .process-signal i:nth-child(2) { height: 65%; animation-delay: -.6s; }
body.page-process .process-signal i:nth-child(3) { height: 100%; animation-delay: -.9s; }
body.page-process .process-signal i:nth-child(4) { height: 52%; animation-delay: -.25s; }
body.page-process .process-signal i:nth-child(5) { height: 78%; animation-delay: -.75s; }
body.page-process .process-sitemap { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 23% 7%; padding-top: 4%; text-align: center; }
body.page-process .process-sitemap b { grid-column: 1/4; justify-self: center; width: 30%; padding: 10px 4px; border-radius: 6px; color: white; background: var(--blue); font-size: 9px; }
body.page-process .process-sitemap span { padding: 10px 3px; border: 1px solid #cbd9e4; border-radius: 6px; color: #526a7e; background: white; font-size: 8px; }
body.page-process .process-sitemap__lines { position: absolute; top: 52%; left: 0; width: 100%; height: 19%; fill: none; stroke: #b9cbd9; stroke-width: 1.2; }
body.page-process .process-sitemap__flow { stroke: var(--cyan); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 2 9; opacity: .85; animation: process-flow-line 21s linear infinite; }
body.page-process .process-sitemap span { position: relative; }
body.page-process .process-sitemap span::after { content: "· · ·"; display: block; margin-top: 4px; color: #b9cbd9; font-size: 7px; letter-spacing: 2px; line-height: 1; }
body.page-process .process-sitemap b, body.page-process .process-sitemap span { transition: transform .25s var(--ease), box-shadow .25s; }
body.page-process .process-sitemap b:hover, body.page-process .process-sitemap span:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(7,21,34,.12); }
body.page-process .process-wireframes { display: grid; grid-template-columns: repeat(3,1fr); gap: 7%; margin-top: 9%; }
body.page-process .process-wireframes i { position: relative; height: 150px; border: 1px solid #d8e2ea; border-radius: 5px; background: #fff; }
body.page-process .process-wireframes i:nth-child(1) { background: linear-gradient(#dbe6ef,#dbe6ef) no-repeat 0 0 / 100% 34px, repeating-linear-gradient(to bottom,#eef3f7 0 5px,transparent 5px 14px) no-repeat 8% 44px / 84% 89px, linear-gradient(#dbe6ef,#dbe6ef) no-repeat 8% 138px / 40% 6px, #fff; }
body.page-process .process-wireframes i:nth-child(2) { border-color: var(--blue); box-shadow: 0 10px 22px rgba(31,111,235,.16); transform: translateY(-4px); background: linear-gradient(#eef3f7,#eef3f7) no-repeat 8% 8px / 84% 6px, repeating-linear-gradient(to bottom,#e3ecf3 0 18px,transparent 18px 26px) no-repeat 8% 22px / 38% 96px, repeating-linear-gradient(to bottom,#e3ecf3 0 18px,transparent 18px 26px) no-repeat 92% 22px / 38% 96px, linear-gradient(#eef3f7,#eef3f7) no-repeat 8% 128px / 84% 6px, linear-gradient(#eef3f7,#eef3f7) no-repeat 8% 140px / 52% 5px, #fff; }
body.page-process .process-wireframes i:nth-child(2)::after { content: "in progress"; position: absolute; right: 5px; bottom: 4px; color: var(--blue); font-size: 6px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
body.page-process .process-wireframes i:nth-child(3) { background: repeating-linear-gradient(to bottom,#eef3f7 0 5px,transparent 5px 8px,#e3ecf3 8px 18px,transparent 18px 27px) no-repeat 8% 12px / 84% 105px, linear-gradient(var(--blue),var(--blue)) no-repeat 8% 128px / 34% 13px, linear-gradient(#e3ecf3,#e3ecf3) no-repeat 62% 128px / 24% 13px, #fff; }
body.page-process .process-board--system { border-color: rgba(255,255,255,.14); background: #0e2d4a; box-shadow: 0 25px 65px rgba(0,0,0,.3); }
body.page-process .process-board--system .process-board__top { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.48); }
body.page-process .process-board--system .process-board__top i { background: rgba(255,255,255,.25); }
body.page-process .process-system-preview { position: relative; height: 37%; overflow: hidden; border-radius: 9px; background: linear-gradient(140deg,#1f6feb 0%,#1754b2 52%,#38bdf8 140%); }
body.page-process .process-system-preview span { position: absolute; top: 22%; left: 9%; width: 38%; height: 8%; border-radius: 8px; background: white; box-shadow: 0 16px 0 rgba(255,255,255,.45),0 32px 0 rgba(255,255,255,.22); }
body.page-process .process-system-preview b { position: absolute; right: -4%; bottom: -35%; width: 53%; aspect-ratio: 1; border: 18px solid rgba(255,255,255,.22); border-radius: 50%; }
body.page-process .process-system-preview i { position: absolute; right: 10%; top: 16%; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
body.page-process .process-system-components { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 7px; height: 20%; margin-top: 8px; }
body.page-process .process-system-components i { border-radius: 6px; background: #173c5e; }
body.page-process .process-system-components i:first-child { background: #eff6fb; }
body.page-process .process-system-components i:last-child { display: none; }
body.page-process .process-system-status { display: flex; gap: 5px; margin-top: 10px; }
body.page-process .process-system-status span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; color: rgba(255,255,255,.45); font-size: 6px; }
body.page-process .process-system-status .is-done { margin-left: auto; color: #92e4ff; border-color: rgba(56,189,248,.4); }
body.page-process .process-growth-chart { position: relative; height: 53%; border-bottom: 1px solid #dce6ed; background: linear-gradient(rgba(16,42,67,.055) 1px,transparent 1px); background-size: 100% 25%; }
body.page-process .process-growth-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
body.page-process .process-growth-chart__line { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 560; stroke-dashoffset: 560; animation: process-chart 3s var(--ease) forwards; }
body.page-process .process-growth-chart__base { fill: none; stroke: #c3d2de; stroke-width: 2; stroke-dasharray: 5 7; }
body.page-process .process-growth-chart__area { fill: url(#apGrowthFill); stroke: none; opacity: 0; animation: process-chart-fade 1.2s ease 2.2s forwards; }
body.page-process .process-growth-chart__tag { position: absolute; z-index: 2; padding: 5px 10px; border: 1px solid #cfdde8; border-radius: 999px; background: rgba(255,255,255,.92); color: #3f5a71; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 8px 18px rgba(7,21,34,.08); }
body.page-process .process-growth-chart__tag--main { right: 4%; top: 28%; color: var(--blue); border-color: rgba(31,111,235,.35); }
body.page-process .process-growth-chart__tag:not(.process-growth-chart__tag--main) { left: 42%; top: 64%; }
body.page-process .process-growth-chart__axis { position: absolute; left: 2%; right: 2%; bottom: -20px; display: flex; justify-content: space-between; color: #8ba0b1; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
@keyframes process-chart-fade { to { opacity: 1; } }
body.page-process .process-growth-chart i { position: absolute; width: 8px; height: 8px; border: 2px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(31,111,235,.12); }
body.page-process .process-growth-chart i:nth-of-type(1) { left: 16%; bottom: 23%; }
body.page-process .process-growth-chart i:nth-of-type(2) { left: 36%; bottom: 34%; }
body.page-process .process-growth-chart i:nth-of-type(3) { left: 62%; bottom: 49%; }
body.page-process .process-growth-chart i:nth-of-type(4) { right: 2%; top: 15%; animation: process-map-pulse 2.4s ease-out infinite; }
body.page-process .process-growth-loop { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 9%; color: #65798a; font-size: 9px; text-transform: uppercase; }
body.page-process .process-growth-loop span { padding: 7px 10px; border-radius: 20px; background: #eef4f8; }
body.page-process .process-growth-loop b { color: var(--blue); }
body.page-process .process-stage__content { min-width: 0; }
body.page-process .process-stage__statement small { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.page-process .process-stage--dark .process-stage__statement small { color: var(--cyan); }
body.page-process .process-stage__statement h3 { margin-top: 21px; font-size: clamp(33px,3vw,48px); font-weight: 600; line-height: 1.28; letter-spacing: -.055em; }
body.page-process .process-stage__details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 58px; padding-top: 35px; border-top: 1px solid #dce5ed; }
body.page-process .process-stage--dark .process-stage__details { border-color: rgba(255,255,255,.15); }
body.page-process .process-stage__details h4 { margin-bottom: 19px; color: #536a7e; font-size: 12px; letter-spacing: -.02em; }
body.page-process .process-stage--dark .process-stage__details h4 { color: rgba(255,255,255,.48); }
body.page-process .process-stage__details ul { display: grid; gap: 11px; color: #263e52; font-size: 13px; }
body.page-process .process-stage--dark .process-stage__details ul { color: rgba(255,255,255,.72); }
body.page-process .process-stage__details li { position: relative; padding-left: 14px; }
body.page-process .process-stage__details li::before { content: ""; position: absolute; top: .6em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
body.page-process .process-stage--dark .process-stage__details li::before { background: var(--cyan); }
body.page-process .process-stage__details > div > p { display: flex; flex-wrap: wrap; gap: 6px; }
body.page-process .process-stage__details p span { padding: 7px 10px; border: 1px solid #d7e1e9; border-radius: 30px; color: #657a8d; font-size: 8px; }
body.page-process .process-stage--dark .process-stage__details p span { color: rgba(255,255,255,.62); border-color: rgba(255,255,255,.16); }
body.page-process .process-stage__outcome { display: grid; grid-template-columns: 90px 1fr; gap: 25px; margin-top: 45px; padding: 22px 24px; border-left: 3px solid var(--blue); background: #f2f6f9; }
body.page-process .process-stage--surface .process-stage__outcome { background: white; }
body.page-process .process-stage--dark .process-stage__outcome { border-color: var(--cyan); background: rgba(255,255,255,.065); }
body.page-process .process-stage__outcome span { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
body.page-process .process-stage--dark .process-stage__outcome span { color: var(--cyan); }
body.page-process .process-stage__outcome p { color: #435b70; font-size: 14px; line-height: 1.65; }
body.page-process .process-stage--dark .process-stage__outcome p { color: rgba(255,255,255,.67); }

body.page-process .process-values { padding: 150px 0 160px; color: white; background: linear-gradient(135deg,#0b2845 0%,#071522 72%); }
body.page-process .process-values__head > p { color: var(--cyan); }
body.page-process .process-values__head h2 span { color: rgba(255,255,255,.4); }
body.page-process .process-values__grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.17); }
body.page-process .process-values__grid article { position: relative; min-height: 310px; padding: 28px 45px 0 0; }
body.page-process .process-values__grid article + article { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.17); }
body.page-process .process-values__grid span { color: var(--cyan); font-size: 9px; }
body.page-process .process-values__grid small { position: absolute; top: 30px; right: 35px; color: rgba(255,255,255,.32); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
body.page-process .process-values__grid h3 { margin-top: 115px; font-size: 22px; font-weight: 600; letter-spacing: -.04em; }
body.page-process .process-values__grid p { max-width: 290px; margin-top: 20px; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.8; }
body.page-process .process-values__grid article::after { content: ""; position: absolute; right: 45px; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),transparent); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
body.page-process .process-values__grid article:hover::after { transform: scaleX(1); }

body.page-process .process-cta { position: relative; min-height: 720px; overflow: hidden; color: white; background: #071522; isolation: isolate; }
body.page-process .process-cta__media { position: absolute; inset: 0; z-index: -1; }
body.page-process .process-cta__media img { width: 100%; height: 120%; object-fit: cover; opacity: .62; filter: saturate(.78) contrast(1.12); transform: translate3d(0,var(--scroll-shift),0) scale(1.06); }
body.page-process .process-cta__media div { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.95) 0%,rgba(7,21,34,.82) 42%,rgba(7,21,34,.34) 100%),linear-gradient(0deg,rgba(7,21,34,.55),transparent 55%); }
body.page-process .process-cta__inner { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.6fr); align-items: end; gap: 110px; min-height: 720px; padding: 130px 0 115px; }
body.page-process .process-cta h2 { margin-top: 32px; font-size: clamp(48px,5vw,76px); font-weight: 600; line-height: 1.16; letter-spacing: -.06em; }
body.page-process .process-cta h2 span { color: var(--cyan); }
body.page-process .process-cta__action p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.8; }
body.page-process .process-cta__action > a { display: flex; align-items: center; gap: 20px; margin-top: 38px; font-size: 17px; font-weight: 600; }
body.page-process .process-cta__action > a span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--cyan); transition: transform .35s var(--ease); }
body.page-process .process-cta__action > a:hover span { transform: rotate(45deg) scale(1.08); }
body.page-process .process-cta__action > div { display: flex; gap: 28px; margin-top: 55px; color: rgba(255,255,255,.48); font-size: 12px; }

@keyframes process-flow-line { to { stroke-dashoffset: -300; } }
@keyframes process-map-pulse { 70% { box-shadow: 0 0 0 18px rgba(56,189,248,0); } 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); } }
@keyframes process-signal { from { opacity: .55; transform: scaleY(.7); } to { opacity: 1; transform: scaleY(1); } }
@keyframes process-chart { to { stroke-dashoffset: 0; } }

@media (max-width: 1180px) {
  body.page-process .process-hero__inner { grid-template-columns: minmax(0,1fr) minmax(390px,.8fr); gap: 60px; }
  body.page-process .process-hero__map { width: min(40vw,480px); }
  body.page-process .process-stage__body,body.page-process .process-stage__body--reverse { grid-template-columns: minmax(370px,.9fr) minmax(0,1.1fr); gap: 65px; }
  body.page-process .process-stage__body--reverse { grid-template-columns: minmax(0,1.1fr) minmax(370px,.9fr); }
  body.page-process .process-cta__inner { gap: 70px; }
}

@media (max-width: 900px) {
  body.page-process .site-header:not(.is-dark-section) .menu-toggle { color: var(--ink); border-color: rgba(16,42,67,.22); background: rgba(255,255,255,.62); }
  body.page-process .site-header.menu-active .menu-toggle { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
  body.page-process .process-hero__inner { grid-template-columns: 1fr; gap: 55px; min-height: auto; padding: 135px 0 100px; }
  body.page-process .process-breadcrumb { margin-bottom: 42px; }
  body.page-process .process-hero__copy { max-width: 720px; }
  body.page-process .process-hero__map { width: min(68vw,500px); justify-self: center; }
  body.page-process .process-hero__footer { bottom: 22px; }
  body.page-process .process-overview { padding: 115px 0 90px; }
  body.page-process .process-overview__head { grid-template-columns: 1fr; gap: 35px; }
  body.page-process .process-overview__head > p { max-width: 600px; }
  body.page-process .process-flow { grid-template-columns: repeat(2,1fr); margin-top: 65px; }
  body.page-process .process-flow li:nth-child(3) { border-left: 0; border-top: 1px solid #dce5ed; }
  body.page-process .process-flow li:nth-child(4) { border-top: 1px solid #dce5ed; }
  body.page-process .process-stage { padding: 120px 0 125px; }
  body.page-process .process-stage__head { grid-template-columns: 50px 1fr; gap: 28px; }
  body.page-process .process-stage__head > p { grid-column: 2; max-width: 600px; }
  body.page-process .process-stage__body,body.page-process .process-stage__body--reverse { grid-template-columns: 1fr; gap: 60px; padding-top: 65px; }
  body.page-process .process-stage__body--reverse .process-stage__visual { order: initial; }
  body.page-process .process-stage__visual { width: min(100%,620px); aspect-ratio: 1.25; }
  body.page-process .process-stage__content { max-width: 680px; }
  body.page-process .process-values { padding: 115px 0 120px; }
  body.page-process .process-values__grid article { padding-right: 25px; }
  body.page-process .process-values__grid article + article { padding-left: 25px; }
  body.page-process .process-values__grid small { right: 20px; }
  body.page-process .process-cta__inner { grid-template-columns: 1fr; gap: 65px; align-content: center; padding: 115px 0 100px; }
  body.page-process .process-cta__action { max-width: 620px; }
}

@media (max-width: 620px) {
  body.page-process .process-hero { min-height: auto; }
  body.page-process .process-hero__word { top: 96px; font-size: 102px; }
  body.page-process .process-hero__inner { gap: 45px; padding: 125px 0 92px; }
  body.page-process .process-breadcrumb { margin-bottom: 30px; }
  body.page-process .process-hero__eyebrow { margin-bottom: 17px; font-size: 9px; }
  body.page-process .process-hero h1 { font-size: 43px; line-height: 1.17; }
  body.page-process .process-hero__description { margin-top: 24px; font-size: 14px; }
  body.page-process .process-hero__description br { display: none; }
  body.page-process .process-hero__map { width: 340px; max-width: 96vw; border-radius: 22px; }
  body.page-process .process-hero__node { grid-template-columns: 27px 1fr; width: 126px; padding: 11px 10px; border-radius: 9px; }
  body.page-process .process-hero__node span { width: 21px; height: 21px; font-size: 6px; }
  body.page-process .process-hero__node small { font-size: 5px; }
  body.page-process .process-hero__node strong { font-size: 11px; }
  body.page-process .process-hero__map::after { right: 18px; bottom: 15px; font-size: 6px; }
  body.page-process .process-hero__footer { position: relative; bottom: auto; padding-bottom: 18px; gap: 12px; font-size: 6px; }
  body.page-process .process-hero__footer span:nth-child(2),body.page-process .process-hero__footer span:nth-child(3) { display: none; }
  body.page-process .process-hero__footer strong { font-size: 6px; }
  body.page-process .process-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  body.page-process .process-overview { padding: 92px 0 78px; }
  body.page-process .process-overview__head { gap: 28px; }
  body.page-process .process-overview__head h2,body.page-process .process-values__head h2 { font-size: 41px; }
  body.page-process .process-overview__head h2 br,body.page-process .process-values__head h2 br { display: none; }
  body.page-process .process-overview__head > p { font-size: 14px; }
  body.page-process .process-flow { grid-template-columns: 1fr; margin-top: 55px; }
  body.page-process .process-flow li + li { border-left: 0; border-top: 1px solid #dce5ed; }
  body.page-process .process-flow a { min-height: 116px; padding: 20px; }
  body.page-process .process-flow strong { margin-top: 22px; font-size: 20px; }
  body.page-process .process-flow i { right: 20px; bottom: 20px; }
  body.page-process .process-stage { padding: 95px 0 100px; }
  body.page-process .process-stage__head { grid-template-columns: 40px 1fr; gap: 20px; padding-bottom: 35px; }
  body.page-process .process-stage__head > span { width: 34px; height: 34px; }
  body.page-process .process-stage__head h2 { font-size: 51px; }
  body.page-process .process-stage__head > p { font-size: 14px; }
  body.page-process .process-stage__body,body.page-process .process-stage__body--reverse { gap: 43px; padding-top: 45px; }
  body.page-process .process-stage__visual { width: 100%; aspect-ratio: 1.03; border-radius: 18px; }
  body.page-process .process-board { inset: 8%; padding: 0 6.5% 6%; }
  body.page-process .process-board--notes article { margin-top: 6px; padding: 10px 34px 9px 10px; }
  body.page-process .process-board--notes p { font-size: 9px; }
  body.page-process .process-wireframes i { height: 50px; }
  body.page-process .process-system-status span { padding: 5px 6px; font-size: 5px; }
  body.page-process .process-stage__statement h3 { font-size: 32px; }
  body.page-process .process-stage__statement h3 br { display: none; }
  body.page-process .process-stage__details { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; padding-top: 28px; }
  body.page-process .process-stage__outcome { grid-template-columns: 1fr; gap: 9px; margin-top: 36px; padding: 19px; }
  body.page-process .process-values { padding: 95px 0 100px; }
  body.page-process .process-values__grid { grid-template-columns: 1fr; margin-top: 65px; }
  body.page-process .process-values__grid article,body.page-process .process-values__grid article + article { min-height: 210px; padding: 24px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  body.page-process .process-values__grid article:last-child { border-bottom: 0; }
  body.page-process .process-values__grid small { top: 26px; right: 0; }
  body.page-process .process-values__grid h3 { margin-top: 62px; }
  body.page-process .process-cta { min-height: 660px; }
  body.page-process .process-cta__media img { width: 180%; object-position: 64% center; }
  body.page-process .process-cta__inner { padding: 100px 0 85px; }
  body.page-process .process-cta h2 { margin-top: 28px; font-size: 43px; }
  body.page-process .process-cta__action > div { flex-direction: column; gap: 5px; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-process .process-hero__path-flow,body.page-process .process-sitemap__flow,body.page-process .process-signal i,body.page-process .process-growth-chart path,body.page-process .process-growth-chart i:nth-of-type(4) { animation: none; }
  body.page-process .process-growth-chart__line { stroke-dashoffset: 0; }
  body.page-process .process-growth-chart__area { opacity: 1; }
  body.page-process .process-hero__runner, body.page-process .process-hero__ring { display: none; }
  body.page-process .process-hero__sweep { animation: none; }
}

/* About page */
body.page-about { color: var(--ink); background: #fff; }
body.page-about .desktop-nav a[aria-current="page"] { opacity: 1; }
body.page-about .desktop-nav a[aria-current="page"]::after { right: 0; }
body.page-about .mobile-nav a[aria-current="page"] { color: var(--cyan); }

body.page-about .about-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 12%,rgba(56,189,248,.32),transparent 28%),
    linear-gradient(135deg,#1f6feb 0%,#1459c7 50%,#0b3d92 100%);
  isolation: isolate;
}
body.page-about .about-hero::before {
  content: "ABOUT";
  position: absolute;
  top: 77px;
  left: 50%;
  z-index: -1;
  color: rgba(255,255,255,.055);
  font-size: clamp(155px,19vw,290px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.085em;
  white-space: nowrap;
  transform: translateX(-50%);
}
body.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: -11%;
  bottom: -39%;
  z-index: -1;
  width: 67vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255,255,255,.025),0 0 0 16vw rgba(255,255,255,.018);
}
body.page-about .about-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(110deg,transparent 0%,#000 56%,#000 100%);
}
body.page-about .about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(430px,.78fr);
  align-items: center;
  gap: clamp(75px,8vw,140px);
  min-height: 810px;
  padding: 130px 0 95px;
}
body.page-about .about-hero__copy { position: relative; z-index: 2; }
body.page-about .about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 72px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-about .about-breadcrumb i { width: 28px; height: 1px; background: rgba(255,255,255,.35); }
body.page-about .about-breadcrumb strong { color: white; font-weight: 700; }
body.page-about .about-hero__eyebrow {
  margin-bottom: 23px;
  color: #8ce2ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-about .about-hero h1 {
  max-width: 760px;
  font-size: clamp(54px,5.25vw,82px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.065em;
}
body.page-about .about-hero h1 span { color: #9fe8ff; }
body.page-about .about-hero__description {
  margin-top: 34px;
  color: rgba(255,255,255,.67);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: -.015em;
}
body.page-about .about-hero__identity {
  position: relative;
  width: min(100%,500px);
  aspect-ratio: .92;
  justify-self: end;
  overflow: hidden;
  padding: 31px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px;
  background: rgba(5,40,101,.26);
  box-shadow: 0 32px 80px rgba(4,31,81,.28),inset 0 0 0 10px rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .45s var(--ease);
}
body.page-about .about-hero__identity::before,
body.page-about .about-hero__identity::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.16);
}
body.page-about .about-hero__identity::before { top: 0; bottom: 0; left: 50%; width: 1px; }
body.page-about .about-hero__identity::after { top: 50%; right: 0; left: 0; height: 1px; }
body.page-about .about-hero__identity-top,
body.page-about .about-hero__identity-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-about .about-hero__identity-top span,
body.page-about .about-hero__identity-bottom span { font-size: 11px; font-weight: 800; letter-spacing: .14em; }
body.page-about .about-hero__identity-top small,
body.page-about .about-hero__identity-bottom small { color: rgba(255,255,255,.43); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }
body.page-about .about-hero__identity > strong {
  position: absolute;
  inset: 14% 8% 11%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(160px,15vw,235px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.15em;
}
body.page-about .about-hero__identity > strong i { position: relative; font-style: normal; }
body.page-about .about-hero__identity > strong i:first-child { color: white; transform: translateY(-7%); }
body.page-about .about-hero__identity > strong i:last-child {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.55);
  transform: translateY(9%);
}
body.page-about .about-hero__identity-bottom { position: absolute; right: 31px; bottom: 28px; left: 31px; }
body.page-about .about-hero__orbit { position: absolute; top: 50%; left: 50%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(159,232,255,.2); border-radius: 50%; transform: translate(-50%,-50%) rotate(-16deg); }
body.page-about .about-hero__orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #9fe8ff; box-shadow: 0 0 18px rgba(159,232,255,.8); }
body.page-about .about-hero__orbit i:nth-child(1) { top: -4px; left: 48%; }
body.page-about .about-hero__orbit i:nth-child(2) { right: 6%; bottom: 20%; width: 5px; height: 5px; }
body.page-about .about-hero__orbit i:nth-child(3) { bottom: 3%; left: 18%; width: 4px; height: 4px; }
body.page-about .about-hero__footer {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: rgba(255,255,255,.43);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.page-about .about-hero__footer span { display: flex; align-items: center; gap: 25px; }
body.page-about .about-hero__footer span::after { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.24); }
body.page-about .about-hero__footer strong { margin-left: auto; color: white; font-size: 8px; }
body.page-about .about-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20,89,199,.26);
  font-size: 13px;
  transition: opacity .3s,visibility .3s,transform .3s;
}
body.page-about .about-top b { display: none; }
body.page-about.hero-active .about-top { visibility: hidden; opacity: 0; transform: translateY(12px); }

body.page-about .about-manifesto { padding: 155px 0 145px; background: white; }
body.page-about .about-manifesto__head > p,
body.page-about .about-definition__content header > p,
body.page-about .about-beliefs__head > p,
body.page-about .about-role__head > div > p,
body.page-about .about-profile__head > p {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-about .about-manifesto__head h2,
body.page-about .about-beliefs__head h2,
body.page-about .about-role__head h2 {
  font-size: clamp(46px,4.7vw,72px);
  font-weight: 580;
  line-height: 1.17;
  letter-spacing: -.06em;
}
body.page-about .about-manifesto__head h2 span,
body.page-about .about-role__head h2 span { color: var(--blue); }
body.page-about .about-manifesto__body {
  display: grid;
  grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr);
  gap: clamp(80px,10vw,170px);
  margin-top: 105px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
body.page-about .about-manifesto__lead span { color: #8394a4; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.page-about .about-manifesto__lead p { max-width: 440px; margin-top: 50px; font-size: clamp(28px,2.5vw,39px); font-weight: 550; line-height: 1.35; letter-spacing: -.05em; }
body.page-about .about-manifesto__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-top: 48px; }
body.page-about .about-manifesto__copy p { color: #5f7386; font-size: 14px; line-height: 1.95; }
body.page-about .about-manifesto__line { position: relative; height: 3px; margin-top: 110px; overflow: hidden; background: #e5ebf0; }
body.page-about .about-manifesto__line span { display: block; width: 38%; height: 100%; background: linear-gradient(90deg,var(--blue),var(--cyan)); animation: about-line-travel 5s var(--ease) infinite alternate; }

body.page-about .about-definition { padding: 150px 0; overflow: hidden; background: #f1f5f8; }
body.page-about .about-definition__inner { display: grid; grid-template-columns: minmax(400px,.86fr) minmax(0,1.14fr); align-items: center; gap: clamp(80px,9vw,150px); }
body.page-about .about-definition__mark {
  position: relative;
  display: flex;
  min-height: 610px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: 26px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px),
    linear-gradient(145deg,#123d68,#071a2c);
  background-size: 54px 54px,54px 54px,auto;
  box-shadow: 0 35px 75px rgba(7,21,34,.2);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .45s var(--ease);
}
body.page-about .about-definition__mark::before {
  content: "";
  position: absolute;
  top: 9%;
  right: -27%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(56,189,248,.27);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(56,189,248,.04),0 0 0 110px rgba(56,189,248,.025);
}
body.page-about .about-definition__mark > span { position: relative; color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
body.page-about .about-definition__mark > strong { position: relative; font-size: clamp(82px,8.5vw,120px); line-height: .82; letter-spacing: -.1em; }
body.page-about .about-definition__mark > strong span { color: var(--cyan); }
body.page-about .about-definition__mark > small { position: relative; color: rgba(255,255,255,.42); font-size: 8px; line-height: 1.7; letter-spacing: .12em; text-transform: uppercase; }
body.page-about .about-definition__content header { padding-bottom: 65px; }
body.page-about .about-definition__content header h2 { font-size: clamp(42px,4vw,62px); font-weight: 600; line-height: 1.2; letter-spacing: -.055em; }
body.page-about .about-definition__content article { display: grid; grid-template-columns: 105px 1fr; gap: 35px; padding: 45px 0; border-top: 1px solid #d5dfe7; }
body.page-about .about-definition__content article > span { color: var(--blue); font-size: 31px; font-weight: 750; letter-spacing: -.05em; }
body.page-about .about-definition__content article small { color: #8495a4; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.page-about .about-definition__content article h3 { margin-top: 12px; font-size: 24px; font-weight: 600; letter-spacing: -.04em; }
body.page-about .about-definition__content article p { max-width: 560px; margin-top: 15px; color: #65798b; font-size: 14px; line-height: 1.8; }

body.page-about .about-beliefs { padding: 150px 0 160px; overflow: hidden; color: white; background: #155aca; }
body.page-about .about-beliefs__head > p { color: #a5ebff; }
body.page-about .about-beliefs__head h2 span { color: rgba(255,255,255,.5); }
body.page-about .about-beliefs__grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.25); }
body.page-about .about-beliefs__grid article {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  padding: 30px 42px 35px 0;
}
body.page-about .about-beliefs__grid article + article { padding-left: 42px; border-left: 1px solid rgba(255,255,255,.22); }
body.page-about .about-beliefs__grid article > div { display: flex; justify-content: space-between; color: #a5ebff; font-size: 9px; }
body.page-about .about-beliefs__grid article > div small { color: rgba(255,255,255,.45); letter-spacing: .13em; text-transform: uppercase; }
body.page-about .about-beliefs__grid h3 { position: relative; z-index: 2; margin-top: 125px; font-size: 27px; font-weight: 600; letter-spacing: -.045em; }
body.page-about .about-beliefs__grid p { position: relative; z-index: 2; max-width: 325px; margin-top: 22px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.85; }
body.page-about .about-beliefs__grid b { position: absolute; right: 20px; bottom: -60px; color: rgba(255,255,255,.065); font-size: 250px; font-weight: 800; line-height: 1; transition: color .45s,transform .55s var(--ease); }
body.page-about .about-beliefs__grid article:hover b { color: rgba(255,255,255,.12); transform: translateY(-12px) rotate(-3deg); }

body.page-about .about-role { padding: 155px 0 165px; background: white; }
body.page-about .about-role__head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.52fr); align-items: end; gap: 90px; }
body.page-about .about-role__head > p { padding-bottom: 6px; color: #64798b; font-size: 14px; line-height: 1.85; }
body.page-about .about-role__body { display: grid; grid-template-columns: minmax(430px,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(80px,9vw,145px); margin-top: 100px; }
body.page-about .about-role__diagram {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #dbe5ed;
  border-radius: 50%;
  background: radial-gradient(circle,#fff 0 17%,#edf5fb 17.3% 18%,#fff 18.3% 100%);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .45s var(--ease);
}
body.page-about .about-role__ring { position: absolute; top: 50%; left: 50%; border: 1px solid #d6e3ed; border-radius: 50%; transform: translate(-50%,-50%); }
body.page-about .about-role__ring--outer { width: 75%; height: 75%; }
body.page-about .about-role__ring--inner { width: 46%; height: 46%; border-style: dashed; animation: about-orbit 24s linear infinite; }
body.page-about .about-role__diagram > strong { position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column; color: var(--blue); font-size: 27px; font-weight: 800; text-align: center; transform: translate(-50%,-50%); }
body.page-about .about-role__diagram > strong small { margin-top: 3px; color: #8295a5; font-size: 6px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
body.page-about .about-role__node {
  position: absolute;
  display: flex;
  min-width: 105px;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid #d5e1ea;
  border-radius: 30px;
  color: #274157;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(16,42,67,.09);
  font-size: 10px;
  font-weight: 700;
}
body.page-about .about-role__node i { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 6px; font-style: normal; }
body.page-about .about-role__node--build { top: 8%; left: 37%; }
body.page-about .about-role__node--create { top: 43%; right: 3%; }
body.page-about .about-role__node--operate { bottom: 9%; left: 38%; }
body.page-about .about-role__node--grow { top: 43%; left: 3%; }
body.page-about .about-role__list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
body.page-about .about-role__list li { display: grid; grid-template-columns: 55px 1fr; gap: 25px; min-height: 130px; align-items: center; padding: 24px 10px 24px 0; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease),background .35s; }
body.page-about .about-role__list li:hover { padding-right: 20px; padding-left: 18px; background: #f5f8fa; }
body.page-about .about-role__list li > span { color: var(--blue); font-size: 9px; font-weight: 800; }
body.page-about .about-role__list strong { font-size: 18px; letter-spacing: -.025em; }
body.page-about .about-role__list p { margin-top: 7px; color: #6d7f90; font-size: 14px; line-height: 1.7; }

body.page-about .about-promise { position: relative; padding: 155px 0 140px; overflow: hidden; color: white; background: #071522; }
body.page-about .about-promise::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -15%;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(56,189,248,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(31,111,235,.035),0 0 0 180px rgba(31,111,235,.02);
}
body.page-about .about-promise .section-shell { position: relative; }
body.page-about .about-promise__eyebrow { color: var(--cyan); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
body.page-about .about-promise blockquote { margin: 80px 0 100px; font-size: clamp(58px,7.2vw,105px); font-weight: 550; line-height: 1.05; letter-spacing: -.07em; }
body.page-about .about-promise blockquote span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
body.page-about .about-promise__bottom { display: flex; align-items: end; justify-content: space-between; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.16); }
body.page-about .about-promise__bottom > p { color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.85; }
body.page-about .about-promise__signature { display: flex; flex-direction: column; align-items: flex-end; }
body.page-about .about-promise__signature span { font-size: 27px; font-weight: 800; }
body.page-about .about-promise__signature small { color: rgba(255,255,255,.38); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; }

body.page-about .about-profile { padding: 135px 0 150px; background: #f3f7fa; }
body.page-about .about-profile__head { display: grid; grid-template-columns: 1fr 2fr; align-items: end; padding-bottom: 45px; border-bottom: 1px solid #d6e1e9; }
body.page-about .about-profile__head > p { margin: 0; }
body.page-about .about-profile__head h2 { font-size: 46px; font-weight: 600; letter-spacing: -.05em; }
body.page-about .about-profile__list { margin-left: 33.33%; }
body.page-about .about-profile__list > div { display: grid; grid-template-columns: 210px 1fr; gap: 35px; padding: 29px 0; border-bottom: 1px solid #d6e1e9; }
body.page-about .about-profile dt { color: #8193a3; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
body.page-about .about-profile dd { margin: 0; color: #263e52; font-size: 14px; font-weight: 550; }
body.page-about .about-profile dd a + a { margin-left: 30px; color: var(--blue); }

body.page-about .about-cta { position: relative; min-height: 720px; overflow: hidden; color: white; background: #071522; isolation: isolate; }
body.page-about .about-cta__media { position: absolute; inset: 0; z-index: -1; }
body.page-about .about-cta__media img { width: 100%; height: 120%; object-fit: cover; opacity: .66; filter: saturate(.78) contrast(1.1); transform: translate3d(0,var(--scroll-shift),0) scale(1.06); }
body.page-about .about-cta__media div { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.95) 0%,rgba(7,21,34,.82) 42%,rgba(7,21,34,.34) 100%),linear-gradient(0deg,rgba(7,21,34,.55),transparent 55%); }
body.page-about .about-cta__inner { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.6fr); align-items: end; gap: 110px; min-height: 720px; padding: 130px 0 115px; }
body.page-about .about-cta h2 { margin-top: 32px; font-size: clamp(48px,5vw,76px); font-weight: 600; line-height: 1.16; letter-spacing: -.06em; }
body.page-about .about-cta h2 span { color: var(--cyan); }
body.page-about .about-cta__action p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.8; }
body.page-about .about-cta__action > a { display: flex; align-items: center; gap: 20px; margin-top: 38px; font-size: 17px; font-weight: 600; }
body.page-about .about-cta__action > a span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--cyan); transition: transform .35s var(--ease); }
body.page-about .about-cta__action > a:hover span { transform: rotate(45deg) scale(1.08); }
body.page-about .about-cta__action > div { display: flex; gap: 28px; margin-top: 55px; color: rgba(255,255,255,.48); font-size: 12px; }

@keyframes about-line-travel { from { transform: translateX(0); } to { transform: translateX(165%); } }
@keyframes about-orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }

@media (max-width: 1180px) {
  body.page-about .about-hero__inner { grid-template-columns: minmax(0,1fr) minmax(390px,.75fr); gap: 60px; }
  body.page-about .about-hero__identity { width: min(39vw,470px); }
  body.page-about .about-definition__inner { grid-template-columns: minmax(370px,.8fr) minmax(0,1.2fr); gap: 75px; }
  body.page-about .about-definition__mark { min-height: 560px; }
  body.page-about .about-role__body { grid-template-columns: minmax(380px,.85fr) minmax(0,1.15fr); gap: 70px; }
  body.page-about .about-cta__inner { gap: 70px; }
}

@media (max-width: 900px) {
  body.page-about .about-hero__inner { grid-template-columns: 1fr; gap: 60px; min-height: auto; padding: 135px 0 105px; }
  body.page-about .about-breadcrumb { margin-bottom: 42px; }
  body.page-about .about-hero__copy { max-width: 720px; }
  body.page-about .about-hero__identity { width: min(65vw,490px); justify-self: center; }
  body.page-about .about-hero__footer { bottom: 22px; }
  body.page-about .about-manifesto { padding: 115px 0 110px; }
  body.page-about .about-manifesto__body { grid-template-columns: 1fr; gap: 30px; margin-top: 75px; }
  body.page-about .about-manifesto__lead p { margin-top: 30px; }
  body.page-about .about-manifesto__copy { max-width: 720px; padding-top: 15px; }
  body.page-about .about-manifesto__line { margin-top: 80px; }
  body.page-about .about-definition { padding: 115px 0 120px; }
  body.page-about .about-definition__inner { grid-template-columns: 1fr; gap: 70px; }
  body.page-about .about-definition__mark { width: min(100%,620px); min-height: 560px; }
  body.page-about .about-definition__content { max-width: 720px; }
  body.page-about .about-beliefs { padding: 115px 0 120px; }
  body.page-about .about-beliefs__grid article { padding-right: 25px; }
  body.page-about .about-beliefs__grid article + article { padding-left: 25px; }
  body.page-about .about-beliefs__grid h3 { font-size: 23px; }
  body.page-about .about-role { padding: 115px 0 125px; }
  body.page-about .about-role__head { grid-template-columns: 1fr; gap: 35px; }
  body.page-about .about-role__head > p { max-width: 620px; }
  body.page-about .about-role__body { grid-template-columns: 1fr; gap: 70px; margin-top: 75px; }
  body.page-about .about-role__diagram { width: min(100%,590px); justify-self: center; }
  body.page-about .about-role__list { max-width: 720px; }
  body.page-about .about-promise { padding: 115px 0 110px; }
  body.page-about .about-promise blockquote { margin: 70px 0 80px; }
  body.page-about .about-profile { padding: 110px 0 120px; }
  body.page-about .about-profile__head { grid-template-columns: 1fr; gap: 20px; }
  body.page-about .about-profile__list { margin-left: 0; }
  body.page-about .about-cta__inner { grid-template-columns: 1fr; gap: 65px; align-content: center; padding: 115px 0 100px; }
  body.page-about .about-cta__action { max-width: 620px; }
}

@media (max-width: 620px) {
  body.page-about .about-hero { min-height: auto; }
  body.page-about .about-hero::before { top: 99px; font-size: 112px; }
  body.page-about .about-hero__grid { background-size: 54px 54px; }
  body.page-about .about-hero__inner { gap: 48px; padding: 125px 0 95px; }
  body.page-about .about-breadcrumb { margin-bottom: 30px; }
  body.page-about .about-hero__eyebrow { margin-bottom: 17px; font-size: 9px; }
  body.page-about .about-hero h1 { font-size: 42px; line-height: 1.18; }
  body.page-about .about-hero__description { margin-top: 25px; font-size: 14px; }
  body.page-about .about-hero__description br { display: none; }
  body.page-about .about-hero__identity { width: 340px; max-width: 96vw; padding: 23px; border-radius: 22px; }
  body.page-about .about-hero__identity > strong { font-size: 142px; }
  body.page-about .about-hero__identity-bottom { right: 23px; bottom: 20px; left: 23px; }
  body.page-about .about-hero__footer { position: relative; bottom: auto; padding-bottom: 18px; gap: 12px; font-size: 6px; }
  body.page-about .about-hero__footer span:nth-child(2),body.page-about .about-hero__footer span:nth-child(3) { display: none; }
  body.page-about .about-hero__footer strong { font-size: 6px; }
  body.page-about .about-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  body.page-about .about-manifesto { padding: 92px 0 88px; }
  body.page-about .about-manifesto__head h2,body.page-about .about-beliefs__head h2,body.page-about .about-role__head h2 { font-size: 40px; }
  body.page-about .about-manifesto__head h2 br,body.page-about .about-beliefs__head h2 br,body.page-about .about-role__head h2 br { display: none; }
  body.page-about .about-manifesto__body { margin-top: 55px; padding-top: 28px; }
  body.page-about .about-manifesto__lead p { font-size: 28px; }
  body.page-about .about-manifesto__copy { grid-template-columns: 1fr; gap: 18px; }
  body.page-about .about-manifesto__copy p { font-size: 14px; }
  body.page-about .about-manifesto__line { margin-top: 55px; }
  body.page-about .about-definition { padding: 92px 0 98px; }
  body.page-about .about-definition__inner { gap: 55px; }
  body.page-about .about-definition__mark { min-height: 420px; padding: 28px; border-radius: 20px; }
  body.page-about .about-definition__mark > strong { font-size: 82px; }
  body.page-about .about-definition__content header { padding-bottom: 42px; }
  body.page-about .about-definition__content header h2 { font-size: 39px; }
  body.page-about .about-definition__content article { grid-template-columns: 70px 1fr; gap: 15px; padding: 35px 0; }
  body.page-about .about-definition__content article > span { font-size: 25px; }
  body.page-about .about-definition__content article h3 { font-size: 21px; }
  body.page-about .about-beliefs { padding: 92px 0 98px; }
  body.page-about .about-beliefs__grid { grid-template-columns: 1fr; margin-top: 60px; }
  body.page-about .about-beliefs__grid article,body.page-about .about-beliefs__grid article + article { min-height: 260px; padding: 24px 0 30px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  body.page-about .about-beliefs__grid article:last-child { border-bottom: 0; }
  body.page-about .about-beliefs__grid h3 { margin-top: 64px; font-size: 25px; }
  body.page-about .about-beliefs__grid p { font-size: 14px; }
  body.page-about .about-beliefs__grid b { right: 0; bottom: -45px; font-size: 185px; }
  body.page-about .about-role { padding: 92px 0 100px; }
  body.page-about .about-role__head > p { font-size: 14px; }
  body.page-about .about-role__body { gap: 55px; margin-top: 58px; }
  body.page-about .about-role__diagram { width: 100%; }
  body.page-about .about-role__node { min-width: 86px; gap: 7px; padding: 8px 9px; font-size: 8px; }
  body.page-about .about-role__node i { width: 19px; height: 19px; }
  body.page-about .about-role__list li { grid-template-columns: 38px 1fr; gap: 12px; min-height: 118px; }
  body.page-about .about-role__list strong { font-size: 16px; }
  body.page-about .about-promise { padding: 95px 0 90px; }
  body.page-about .about-promise blockquote { margin: 55px 0 65px; font-size: 49px; }
  body.page-about .about-promise__bottom { flex-direction: column; align-items: flex-start; gap: 38px; }
  body.page-about .about-promise__signature { align-items: flex-start; }
  body.page-about .about-profile { padding: 90px 0 100px; }
  body.page-about .about-profile__head h2 { font-size: 39px; }
  body.page-about .about-profile__list > div { grid-template-columns: 115px 1fr; gap: 15px; padding: 23px 0; }
  body.page-about .about-profile dd { font-size: 12px; }
  body.page-about .about-profile dd a { display: block; }
  body.page-about .about-profile dd a + a { margin: 5px 0 0; }
  body.page-about .about-cta { min-height: 660px; }
  body.page-about .about-cta__media img { width: 180%; object-position: 64% center; }
  body.page-about .about-cta__inner { padding: 100px 0 85px; }
  body.page-about .about-cta h2 { margin-top: 28px; font-size: 42px; }
  body.page-about .about-cta__action > div { flex-direction: column; gap: 5px; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-about .about-manifesto__line span,body.page-about .about-role__ring--inner { animation: none; }
}

/* Contact page */
body.page-contact { color: var(--ink); background: #fff; }
body.page-contact .desktop-nav a[aria-current="page"] { opacity: 1; }
body.page-contact .desktop-nav a[aria-current="page"]::after { right: 0; }
body.page-contact .mobile-nav a[aria-current="page"] { color: var(--cyan); }

body.page-contact .contact-page-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: white;
  background: #050b12;
  isolation: isolate;
}
body.page-contact .contact-page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
body.page-contact .contact-page-hero__media img {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  object-position: 66% center;
  opacity: .62;
  filter: saturate(.82) brightness(.72) contrast(1.12);
  transform: translate3d(0,var(--scroll-shift),0) scale(1.07);
}
body.page-contact .contact-page-hero__media div {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(5,11,18,.98) 0%,rgba(5,11,18,.9) 43%,rgba(5,11,18,.5) 75%,rgba(5,11,18,.74) 100%),
    linear-gradient(180deg,rgba(5,11,18,.28),transparent 45%,rgba(5,11,18,.78));
}
body.page-contact .contact-page-hero__word {
  position: absolute;
  top: 75px;
  left: 50%;
  z-index: -1;
  color: rgba(255,255,255,.045);
  font-size: clamp(135px,17vw,260px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}
body.page-contact .contact-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(410px,.7fr);
  align-items: center;
  gap: clamp(80px,9vw,155px);
  min-height: 810px;
  padding: 130px 0 95px;
}
body.page-contact .contact-page-hero__copy { position: relative; z-index: 2; }
body.page-contact .contact-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 72px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-contact .contact-page-breadcrumb i { width: 28px; height: 1px; background: rgba(255,255,255,.28); }
body.page-contact .contact-page-breadcrumb strong { color: var(--cyan); font-weight: 700; }
body.page-contact .contact-page-hero__eyebrow {
  margin-bottom: 23px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-contact .contact-page-hero h1 {
  max-width: 750px;
  font-size: clamp(55px,5.3vw,83px);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -.065em;
}
body.page-contact .contact-page-hero h1 span { color: var(--cyan); }
body.page-contact .contact-page-hero__description { margin-top: 34px; color: rgba(255,255,255,.59); font-size: 15px; line-height: 1.85; }
body.page-contact .contact-page-hero__card {
  position: relative;
  width: min(100%,475px);
  justify-self: end;
  overflow: hidden;
  padding: 30px 31px 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(4,12,20,.67);
  box-shadow: 0 35px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .45s var(--ease);
}
body.page-contact .contact-page-hero__card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(56,189,248,.25),transparent 70%);
}
body.page-contact .contact-page-hero__card-top { position: relative; display: flex; align-items: center; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
body.page-contact .contact-page-hero__card-top span { color: rgba(255,255,255,.42); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
body.page-contact .contact-page-hero__card-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(56,189,248,.08),0 0 16px rgba(56,189,248,.7); animation: contact-ready-pulse 2.2s ease-in-out infinite; }
body.page-contact .contact-page-hero__card > a { position: relative; display: grid; grid-template-columns: 70px 1fr 30px; align-items: center; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
body.page-contact .contact-page-hero__card > a small { color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
body.page-contact .contact-page-hero__card > a strong { font-size: 18px; font-weight: 550; letter-spacing: -.025em; }
body.page-contact .contact-page-hero__card > a b { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--cyan); font-size: 11px; transition: color .3s,background .3s,transform .3s; }
body.page-contact .contact-page-hero__card > a:hover b { color: var(--navy-950); background: var(--cyan); transform: rotate(45deg); }
body.page-contact .contact-page-hero__card-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; padding-top: 25px; }
body.page-contact .contact-page-hero__card-bottom > span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.66); font-size: 8px; text-transform: uppercase; }
body.page-contact .contact-page-hero__card-bottom > span i { width: 5px; height: 5px; border-radius: 50%; background: #55d69e; }
body.page-contact .contact-page-hero__card-bottom small { color: rgba(255,255,255,.3); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
body.page-contact .contact-page-hero__footer {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: rgba(255,255,255,.36);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.page-contact .contact-page-hero__footer span { display: flex; align-items: center; gap: 25px; }
body.page-contact .contact-page-hero__footer span::after { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.2); }
body.page-contact .contact-page-hero__footer strong { margin-left: auto; color: var(--cyan); font-size: 8px; }
body.page-contact .contact-page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20,89,199,.26);
  font-size: 9px;
  transition: opacity .3s,visibility .3s,transform .3s;
}
body.page-contact .contact-page-top b { display: none; }
body.page-contact.hero-active .contact-page-top { visibility: hidden; opacity: 0; transform: translateY(12px); }

body.page-contact .contact-page-channels { padding: 150px 0 135px; background: white; }
body.page-contact .contact-page-channels__head > p,
body.page-contact .contact-page-inquiry__intro > p,
body.page-contact .contact-page-next__head > p,
body.page-contact .contact-page-faq__head > p,
body.page-contact .contact-page-visit__content > p {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.page-contact .contact-page-channels__head h2,
body.page-contact .contact-page-inquiry__intro > h2,
body.page-contact .contact-page-next__head h2,
body.page-contact .contact-page-visit__content > h2 {
  font-size: clamp(46px,4.7vw,72px);
  font-weight: 580;
  line-height: 1.17;
  letter-spacing: -.06em;
}
body.page-contact .contact-page-channels__head h2 span,
body.page-contact .contact-page-inquiry__intro > h2 span,
body.page-contact .contact-page-next__head h2 span,
body.page-contact .contact-page-visit__content > h2 span { color: var(--blue); }
body.page-contact .contact-page-channels__grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 85px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
body.page-contact .contact-page-channels__grid > a { position: relative; display: flex; min-height: 285px; flex-direction: column; padding: 27px 40px 32px 0; transition: color .35s,background .35s,padding .35s var(--ease); }
body.page-contact .contact-page-channels__grid > a + a { padding-left: 40px; border-left: 1px solid var(--line); }
body.page-contact .contact-page-channels__grid > a:hover { padding-right: 30px; padding-left: 30px; color: white; background: var(--blue); }
body.page-contact .contact-page-channels__grid > a + a:hover { padding-left: 30px; }
body.page-contact .contact-page-channels__grid span { color: var(--blue); font-size: 9px; font-weight: 800; }
body.page-contact .contact-page-channels__grid a:hover span,
body.page-contact .contact-page-channels__grid a:hover small,
body.page-contact .contact-page-channels__grid a:hover p { color: rgba(255,255,255,.65); }
body.page-contact .contact-page-channels__grid small { position: absolute; top: 28px; right: 36px; color: #8b9aa8; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
body.page-contact .contact-page-channels__grid strong { margin-top: 69px; font-size: 25px; font-weight: 600; letter-spacing: -.04em; }
body.page-contact .contact-page-channels__grid p { max-width: 280px; margin-top: 20px; color: #6a7d8e; font-size: 13px; line-height: 1.75; }
body.page-contact .contact-page-channels__grid a > i { position: absolute; right: 34px; bottom: 31px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #d8e2ea; border-radius: 50%; color: var(--blue); font-size: 12px; font-style: normal; transition: transform .35s,border .35s,background .35s; }
body.page-contact .contact-page-channels__grid a:hover > i { border-color: white; color: var(--blue); background: white; transform: rotate(45deg); }

body.page-contact .contact-page-inquiry { padding: 150px 0 160px; background: #f1f5f8; scroll-margin-top: 70px; }
body.page-contact .contact-page-inquiry__inner { display: grid; grid-template-columns: minmax(360px,.75fr) minmax(520px,1.25fr); align-items: start; gap: clamp(80px,9vw,150px); }
body.page-contact .contact-page-inquiry__intro { padding-top: 18px; }
body.page-contact .contact-page-inquiry__guide { margin-top: 75px; padding-top: 30px; border-top: 1px solid #d6e0e8; }
body.page-contact .contact-page-inquiry__guide > small { color: #748899; font-size: 9px; font-weight: 700; }
body.page-contact .contact-page-inquiry__guide ul { display: grid; gap: 15px; margin: 25px 0 0; padding: 0; list-style: none; }
body.page-contact .contact-page-inquiry__guide li { display: grid; grid-template-columns: 33px 1fr; align-items: center; color: #314a5f; font-size: 13px; }
body.page-contact .contact-page-inquiry__guide li span { color: var(--blue); font-size: 8px; font-weight: 800; }
body.page-contact .contact-page-inquiry__guide > p { margin-top: 38px; color: #7a8b99; font-size: 11px; line-height: 1.8; }
body.page-contact .contact-page-form {
  padding: 42px 45px 38px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 100% 0,rgba(56,189,248,.14),transparent 28%),
    linear-gradient(145deg,#0d2c48,#071522);
  box-shadow: 0 32px 70px rgba(7,21,34,.2);
}
body.page-contact .contact-page-form__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.13); }
body.page-contact .contact-page-form__head span { font-size: 18px; font-weight: 600; letter-spacing: -.03em; }
body.page-contact .contact-page-form__head small { color: rgba(255,255,255,.37); font-size: 8px; }
body.page-contact .contact-page-form em { color: var(--cyan); font-style: normal; }
body.page-contact .contact-page-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 24px; margin-top: 31px; }
body.page-contact .contact-page-form label { display: flex; flex-direction: column; }
body.page-contact .contact-page-form label > span { margin-bottom: 8px; color: rgba(255,255,255,.58); font-size: 13px; font-weight: 600; }
body.page-contact .contact-page-form__wide { grid-column: 1/-1; }
body.page-contact .contact-page-form input:not([type="checkbox"]),
body.page-contact .contact-page-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 14px;
  resize: none;
  transition: border .2s;
}
body.page-contact .contact-page-form input::placeholder,
body.page-contact .contact-page-form textarea::placeholder { color: rgba(255,255,255,.24); }
body.page-contact .contact-page-form input:focus,
body.page-contact .contact-page-form textarea:focus { border-color: var(--cyan); }
body.page-contact .contact-page-form__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 34px; }
body.page-contact .contact-page-form__privacy { flex-direction: row !important; align-items: center; gap: 10px; cursor: pointer; }
body.page-contact .contact-page-form__privacy input { width: 15px; height: 15px; margin: 0; accent-color: var(--cyan); }
body.page-contact .contact-page-form__privacy span { margin: 0 !important; color: rgba(255,255,255,.42) !important; font-size: 13px !important; }
body.page-contact .contact-page-form button { display: flex; min-width: 215px; min-height: 54px; align-items: center; justify-content: center; gap: 18px; border: 0; border-radius: 99px; color: white; background: var(--blue); cursor: pointer; font-size: 14px; font-weight: 700; transition: background .25s,transform .25s; }
body.page-contact .contact-page-form button span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--cyan); transition: transform .3s; }
body.page-contact .contact-page-form button:hover { background: #2c7cf2; transform: translateY(-2px); }
body.page-contact .contact-page-form button:hover span { transform: rotate(45deg); }
body.page-contact .contact-page-form .form-status { min-height: 22px; margin: 16px 0 -10px; color: var(--cyan); font-size: 13px; text-align: right; }

body.page-contact .contact-page-next { padding: 150px 0 160px; color: white; background: #0b4eb7; }
body.page-contact .contact-page-next__head > p { color: #a8ebff; }
body.page-contact .contact-page-next__head h2 span { color: rgba(255,255,255,.52); }
body.page-contact .contact-page-next__list { display: grid; grid-template-columns: repeat(4,1fr); margin: 90px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.22); list-style: none; }
body.page-contact .contact-page-next__list li { min-height: 300px; padding: 28px 35px 30px 0; }
body.page-contact .contact-page-next__list li + li { padding-left: 35px; border-left: 1px solid rgba(255,255,255,.2); }
body.page-contact .contact-page-next__list li > span { color: #a8ebff; font-size: 9px; font-weight: 800; }
body.page-contact .contact-page-next__list li > div { margin-top: 88px; }
body.page-contact .contact-page-next__list small { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
body.page-contact .contact-page-next__list h3 { margin-top: 10px; font-size: 24px; font-weight: 600; letter-spacing: -.04em; }
body.page-contact .contact-page-next__list p { margin-top: 20px; color: rgba(255,255,255,.61); font-size: 13px; line-height: 1.8; }

body.page-contact .contact-page-faq { padding: 145px 0 155px; background: white; }
body.page-contact .contact-page-faq__inner { display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr); align-items: start; gap: clamp(80px,10vw,170px); }
body.page-contact .contact-page-faq__head { position: sticky; top: 125px; }
body.page-contact .contact-page-faq__head h2 { font-size: clamp(38px,3.6vw,55px); font-weight: 600; line-height: 1.2; letter-spacing: -.055em; }
body.page-contact .contact-page-faq__list { border-top: 1px solid var(--line); }
body.page-contact .contact-page-faq__list article { display: grid; grid-template-columns: 55px 1fr; gap: 30px; padding: 35px 0 38px; border-bottom: 1px solid var(--line); }
body.page-contact .contact-page-faq__list article > span { color: var(--blue); font-size: 9px; font-weight: 800; }
body.page-contact .contact-page-faq__list h3 { font-size: 20px; font-weight: 600; letter-spacing: -.035em; }
body.page-contact .contact-page-faq__list p { max-width: 680px; margin-top: 16px; color: #697c8d; font-size: 14px; line-height: 1.85; }

body.page-contact .contact-page-visit { padding: 150px 0 155px; overflow: hidden; color: white; background: #071a2c; scroll-margin-top: 70px; }
body.page-contact .contact-page-visit__inner { display: grid; grid-template-columns: minmax(420px,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(80px,9vw,150px); }
body.page-contact .contact-page-visit__visual {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  background: radial-gradient(circle at 47% 46%,rgba(31,111,235,.22),transparent 30%),#0c2a45;
  transform: translate3d(var(--pointer-x,0px),var(--pointer-y,0px),0);
  transition: transform .45s var(--ease);
}
body.page-contact .contact-page-visit__grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px); background-size: 54px 54px; }
body.page-contact .contact-funnel { position: absolute; inset: 16% 5% 13%; display: flex; flex-direction: column; align-items: center; justify-content: start; gap: 20px; }
body.page-contact .contact-funnel__stage { position: relative; display: grid; justify-items: center; gap: 7px; }
body.page-contact .contact-funnel__stage--one { width: 100%; }
body.page-contact .contact-funnel__stage--two { width: 66%; }
body.page-contact .contact-funnel__stage--three { width: 32%; }
body.page-contact .contact-funnel__stage small { color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
body.page-contact .contact-funnel__stage i { display: block; width: 100%; height: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: linear-gradient(180deg, rgba(56,189,248,.48), rgba(31,111,235,.4)); clip-path: polygon(0 0, 100% 0, 91% 100%, 9% 100%); }
body.page-contact .contact-funnel__stage--three i { background: linear-gradient(180deg, rgba(56,189,248,.85), rgba(31,111,235,.7)); box-shadow: 0 0 26px rgba(56,189,248,.35); }
body.page-contact .contact-funnel__leak { position: absolute; top: 47%; right: 4%; display: grid; justify-items: center; gap: 5px; color: #f6b73c; }
body.page-contact .contact-funnel__leak b { position: relative; display: grid; width: 24px; height: 24px; place-items: center; border: 1.5px dashed rgba(246,183,60,.8); border-radius: 50%; font-size: 12px; font-weight: 700; }
body.page-contact .contact-funnel__leak b::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 4px; height: 4px; border-radius: 50%; background: #f6b73c; transform: translateX(-50%); animation: contact-leak-drip 1.6s ease-in infinite; }
body.page-contact .contact-funnel__leak span { font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.page-contact .contact-funnel__improve { position: absolute; left: 2%; bottom: 1%; display: grid; justify-items: center; gap: 3px; color: var(--cyan); }
body.page-contact .contact-funnel__improve svg { width: 58px; height: 32px; fill: none; stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
body.page-contact .contact-funnel__improve span { font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
@keyframes contact-leak-drip { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  body.page-contact .contact-funnel__leak b::after { animation: none; }
}
body.page-contact .contact-page-visit__visual > small { position: absolute; right: 26px; bottom: 22px; color: rgba(255,255,255,.32); font-size: 7px; letter-spacing: .13em; }
body.page-contact .contact-page-visit__visual > strong { position: absolute; right: 22px; bottom: 38px; color: rgba(255,255,255,.06); font-size: clamp(72px,8vw,120px); line-height: 1; letter-spacing: -.08em; }
body.page-contact .contact-page-visit__content > p { color: var(--cyan); }
body.page-contact .contact-page-visit__content > h2 span { color: var(--cyan); }
body.page-contact .contact-page-visit__content address, body.page-contact .contact-page-visit__lead { margin-top: 45px; color: rgba(255,255,255,.66); font-size: 16px; font-style: normal; }
body.page-contact .contact-page-visit__content dl { margin-top: 55px; border-top: 1px solid rgba(255,255,255,.14); }
body.page-contact .contact-page-visit__content dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
body.page-contact .contact-page-visit__content dt { color: rgba(255,255,255,.35); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
body.page-contact .contact-page-visit__content dd { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
body.page-contact .contact-page-visit__action { display: inline-flex; align-items: center; gap: 16px; margin-top: 42px; font-size: 14px; font-weight: 700; }
body.page-contact .contact-page-visit__action span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--cyan); transition: transform .3s; }
body.page-contact .contact-page-visit__action:hover span { transform: rotate(45deg); }

@keyframes contact-ready-pulse { 50% { box-shadow: 0 0 0 9px rgba(56,189,248,0),0 0 20px rgba(56,189,248,.75); } }

@media (max-width: 1180px) {
  body.page-contact .contact-page-hero__inner { grid-template-columns: minmax(0,1fr) minmax(380px,.68fr); gap: 65px; }
  body.page-contact .contact-page-inquiry__inner { grid-template-columns: minmax(330px,.7fr) minmax(500px,1.3fr); gap: 70px; }
  body.page-contact .contact-page-visit__inner { grid-template-columns: minmax(380px,.85fr) minmax(0,1.15fr); gap: 70px; }
}

@media (max-width: 900px) {
  body.page-contact .contact-page-hero__inner { grid-template-columns: 1fr; gap: 60px; min-height: auto; padding: 135px 0 105px; }
  body.page-contact .contact-page-breadcrumb { margin-bottom: 42px; }
  body.page-contact .contact-page-hero__copy { max-width: 720px; }
  body.page-contact .contact-page-hero__card { width: min(100%,600px); justify-self: start; }
  body.page-contact .contact-page-hero__footer { bottom: 22px; }
  body.page-contact .contact-page-channels { padding: 115px 0 105px; }
  body.page-contact .contact-page-channels__grid { grid-template-columns: 1fr; margin-top: 65px; }
  body.page-contact .contact-page-channels__grid > a,
  body.page-contact .contact-page-channels__grid > a + a { min-height: 195px; padding: 24px 30px; border-left: 0; border-bottom: 1px solid var(--line); }
  body.page-contact .contact-page-channels__grid > a:last-child { border-bottom: 0; }
  body.page-contact .contact-page-channels__grid > a:hover,
  body.page-contact .contact-page-channels__grid > a + a:hover { padding: 24px 30px; }
  body.page-contact .contact-page-channels__grid strong { margin-top: 42px; }
  body.page-contact .contact-page-inquiry { padding: 115px 0 120px; }
  body.page-contact .contact-page-inquiry__inner { grid-template-columns: 1fr; gap: 70px; }
  body.page-contact .contact-page-inquiry__intro { max-width: 720px; }
  body.page-contact .contact-page-inquiry__guide { max-width: 600px; margin-top: 55px; }
  body.page-contact .contact-page-form { max-width: 720px; }
  body.page-contact .contact-page-next { padding: 115px 0 120px; }
  body.page-contact .contact-page-next__list { grid-template-columns: repeat(2,1fr); margin-top: 70px; }
  body.page-contact .contact-page-next__list li:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  body.page-contact .contact-page-next__list li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
  body.page-contact .contact-page-faq { padding: 115px 0 120px; }
  body.page-contact .contact-page-faq__inner { grid-template-columns: 1fr; gap: 60px; }
  body.page-contact .contact-page-faq__head { position: static; }
  body.page-contact .contact-page-visit { padding: 115px 0 120px; }
  body.page-contact .contact-page-visit__inner { grid-template-columns: 1fr; gap: 65px; }
  body.page-contact .contact-page-visit__visual { width: min(100%,620px); aspect-ratio: 1.2; }
  body.page-contact .contact-page-visit__content { max-width: 720px; }
}

@media (max-width: 620px) {
  body.page-contact .contact-page-hero { min-height: auto; }
  body.page-contact .contact-page-hero__media img { inset: 0 -80% 0 -16%; width: 196%; height: 100%; object-position: 62% center; opacity: .48; }
  body.page-contact .contact-page-hero__media div { background: linear-gradient(90deg,rgba(5,11,18,.98),rgba(5,11,18,.72)),linear-gradient(180deg,rgba(5,11,18,.35),transparent 40%,rgba(5,11,18,.88)); }
  body.page-contact .contact-page-hero__word { top: 99px; font-size: 91px; }
  body.page-contact .contact-page-hero__inner { gap: 48px; padding: 125px 0 95px; }
  body.page-contact .contact-page-breadcrumb { margin-bottom: 30px; }
  body.page-contact .contact-page-hero__eyebrow { margin-bottom: 17px; font-size: 9px; }
  body.page-contact .contact-page-hero h1 { font-size: 42px; line-height: 1.18; }
  body.page-contact .contact-page-hero__description { margin-top: 25px; font-size: 14px; }
  body.page-contact .contact-page-hero__description br { display: none; }
  body.page-contact .contact-page-hero__card { padding: 23px 21px 21px; border-radius: 20px; }
  body.page-contact .contact-page-hero__card > a { grid-template-columns: 52px 1fr 27px; padding: 23px 0; }
  body.page-contact .contact-page-hero__card > a strong { font-size: 15px; }
  body.page-contact .contact-page-hero__card-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  body.page-contact .contact-page-hero__footer { position: relative; bottom: auto; padding-bottom: 18px; gap: 12px; font-size: 6px; }
  body.page-contact .contact-page-hero__footer span:nth-child(2),body.page-contact .contact-page-hero__footer span:nth-child(3) { display: none; }
  body.page-contact .contact-page-hero__footer strong { font-size: 6px; }
  body.page-contact .contact-page-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  body.page-contact .contact-page-channels { padding: 92px 0 85px; }
  body.page-contact .contact-page-channels__head h2,
  body.page-contact .contact-page-inquiry__intro > h2,
  body.page-contact .contact-page-next__head h2,
  body.page-contact .contact-page-visit__content > h2 { font-size: 40px; }
  body.page-contact .contact-page-channels__head h2 br,
  body.page-contact .contact-page-inquiry__intro > h2 br,
  body.page-contact .contact-page-next__head h2 br,
  body.page-contact .contact-page-visit__content > h2 br { display: none; }
  body.page-contact .contact-page-channels__grid { margin-top: 55px; }
  body.page-contact .contact-page-channels__grid > a,
  body.page-contact .contact-page-channels__grid > a + a { min-height: 180px; padding: 22px 18px; }
  body.page-contact .contact-page-channels__grid > a:hover,
  body.page-contact .contact-page-channels__grid > a + a:hover { padding: 22px 18px; }
  body.page-contact .contact-page-channels__grid small { top: 23px; right: 18px; }
  body.page-contact .contact-page-channels__grid strong { margin-top: 38px; font-size: 22px; }
  body.page-contact .contact-page-channels__grid p { max-width: 240px; font-size: 13px; }
  body.page-contact .contact-page-channels__grid a > i { right: 18px; bottom: 22px; }
  body.page-contact .contact-page-inquiry { padding: 92px 0 98px; }
  body.page-contact .contact-page-inquiry__inner { gap: 50px; }
  body.page-contact .contact-page-inquiry__guide { margin-top: 45px; }
  body.page-contact .contact-page-form { padding: 30px 21px 26px; border-radius: 18px; }
  body.page-contact .contact-page-form__grid { grid-template-columns: 1fr; gap: 23px; }
  body.page-contact .contact-page-form__wide { grid-column: auto; }
  body.page-contact .contact-page-form__bottom { align-items: stretch; flex-direction: column; }
  body.page-contact .contact-page-form button { width: 100%; }
  body.page-contact .contact-page-form .form-status { text-align: left; }
  body.page-contact .contact-page-next { padding: 92px 0 98px; }
  body.page-contact .contact-page-next__list { grid-template-columns: 1fr; margin-top: 55px; }
  body.page-contact .contact-page-next__list li,
  body.page-contact .contact-page-next__list li + li,
  body.page-contact .contact-page-next__list li:nth-child(3) { min-height: 220px; padding: 24px 0; border-top: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  body.page-contact .contact-page-next__list li:last-child { border-bottom: 0; }
  body.page-contact .contact-page-next__list li > div { margin-top: 48px; }
  body.page-contact .contact-page-faq { padding: 92px 0 100px; }
  body.page-contact .contact-page-faq__inner { gap: 45px; }
  body.page-contact .contact-page-faq__head h2 { font-size: 38px; }
  body.page-contact .contact-page-faq__list article { grid-template-columns: 38px 1fr; gap: 10px; padding: 29px 0 31px; }
  body.page-contact .contact-page-faq__list h3 { font-size: 18px; }
  body.page-contact .contact-page-faq__list p { font-size: 14px; }
  body.page-contact .contact-page-visit { padding: 92px 0 100px; }
  body.page-contact .contact-page-visit__visual { width: 100%; aspect-ratio: 1.02; border-radius: 18px; }
  body.page-contact .contact-page-visit__visual > strong { font-size: 68px; }
  body.page-contact .contact-page-visit__content address, body.page-contact .contact-page-visit__lead { margin-top: 35px; font-size: 14px; }
  body.page-contact .contact-page-visit__content dl { margin-top: 40px; }
  body.page-contact .contact-page-visit__content dl > div { grid-template-columns: 105px 1fr; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-contact .contact-page-hero__card-top i { animation: none; }
}

/*  */
body.page-services .sv-breadcrumb,
body.page-works .works-breadcrumb,
body.page-process .process-breadcrumb,
body.page-about .about-breadcrumb,
body.page-contact .contact-page-breadcrumb{display:none;}

.ap-toast-dim { position: fixed; inset: 0; z-index: 1000; background: rgba(7, 21, 34, .45); opacity: 0; transition: opacity .3s var(--ease); }
.ap-toast { position: fixed; left: 50%; top: 50%; z-index: 1001; transform: translate(-50%, -50%) scale(.94); display: flex; align-items: center; gap: 14px; max-width: min(420px, calc(100vw - 48px)); padding: 26px 32px; background: var(--white); color: var(--ink); border-radius: 14px; box-shadow: 0 24px 64px rgba(7, 21, 34, .28); opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.ap-toast.is-on, .ap-toast-dim.is-on { opacity: 1; }
.ap-toast.is-on { transform: translate(-50%, -50%) scale(1); }
.ap-toast__icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: #fff; }
.ap-toast--error .ap-toast__icon { background: #c0392b; }
.ap-toast__icon svg { width: 22px; height: 22px; stroke-width: 2.2; }
.ap-toast__msg { font-size: 15px; font-weight: 600; line-height: 1.55; word-break: keep-all; }


body.page-about .about-platform { background: var(--navy-800); }
