@font-face {
  font-family: "NanumSquareNeo";
  src: url("https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy-950: #07111f;
  --navy-900: #0f172a;
  --navy-800: #172554;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #0078d4;
  --sky-100: #eaf4ff;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --surface: #f8fafc;
  --white: #ffffff;
  --teal: #14b8a6;
  --green: #10b981;
  --blog-green: #087f5b;
  --blog-green-dark: #066747;
  --orange: #f97316;
  --paper: #f3f0e8;
  --paper-deep: #e8e1d4;
  --ink: #17201d;
  --sage: #52766a;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --border: 1px solid rgba(148, 163, 184, 0.28);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Pretendard", "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

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

button {
  font: inherit;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border: 2px solid var(--white);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 36px 0 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 14px 40px rgba(7, 17, 31, 0.18);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-500), var(--teal));
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--white);
}

.site-nav .nav-destination {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-nav .nav-destination.blog {
  background: var(--blog-green);
  box-shadow: 0 12px 26px rgba(8, 127, 91, 0.28);
}

.site-nav .nav-destination.blog:hover,
.site-nav .nav-destination.blog:focus {
  color: var(--white);
  background: var(--blog-green-dark);
  box-shadow: 0 16px 30px rgba(8, 127, 91, 0.34);
  transform: translateY(-1px);
}

.mobile-nav-destination {
  display: none !important;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  background: var(--blue-600);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta.blog {
  background: var(--blog-green);
  box-shadow: 0 14px 30px rgba(8, 127, 91, 0.26);
}

.nav-cta.blog:hover,
.nav-cta.blog:focus {
  color: var(--white) !important;
  background: var(--blog-green-dark);
  box-shadow: 0 18px 38px rgba(8, 127, 91, 0.32);
  transform: translateY(-1px);
}

.nav-cta:hover,
.nav-cta:focus {
  color: var(--white) !important;
  background: var(--blue-700);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
  transform: translateY(-1px);
}

.nav-cta.secondary {
  color: var(--blue-700) !important;
  background: var(--white);
  border: 1px solid rgba(147, 197, 253, 0.94);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.nav-cta.secondary:hover,
.nav-cta.secondary:focus {
  color: var(--white) !important;
  background: var(--blue-600);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 8px;
}

.menu-line,
.menu-line::before,
.menu-line::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.menu-line::before {
  transform: translateY(-7px);
}

.menu-line::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 108px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 118, 106, 0.26), transparent 34%),
    linear-gradient(118deg, #111a1f, #132b32 62%, #173c43);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: 76px;
  align-items: center;
}

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

.hero .eyebrow {
  color: #9dd8ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "NanumSquareNeo", "Pretendard", "Segoe UI", "Noto Sans KR", Arial, sans-serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions,
.remote-card,
.footer-grid,
.panel-topline {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .button {
  width: 176px;
}

.secure-note {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.55;
}

.hero-secure-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.hero-scope {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.hero-scope span {
  margin: 0 9px;
  color: #78b6a3;
}

.support-method {
  color: var(--ink);
  background: var(--paper);
  border-top: 5px solid #5a8c7a;
  box-shadow: 0 28px 70px rgba(3, 15, 18, 0.24);
}

.support-method-heading {
  padding: 30px 32px 24px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.14);
}

.support-method-label {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.support-method h2 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.support-method-list {
  padding: 0 32px;
  margin: 0;
  list-style: none;
}

.support-method-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 32, 29, 0.13);
}

.support-method-list span {
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
}

.support-method-list p {
  margin: 0;
  color: #43514c;
  font-size: 15px;
}

.support-method-note {
  padding: 20px 32px 22px;
  margin: 0;
  color: #5f6b67;
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.button-large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 17px;
}

.button.primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.button.primary:hover,
.button.primary:focus {
  background: var(--blue-700);
  box-shadow: 0 24px 52px rgba(37, 99, 235, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--blue-700);
  background: var(--white);
  border-color: rgba(147, 197, 253, 0.94);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.26), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.button.secondary:hover,
.button.secondary:focus {
  color: var(--white);
  background: var(--blue-600);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.button.blog-button {
  color: var(--white);
  background: var(--blog-green);
  box-shadow: 0 18px 38px rgba(8, 127, 91, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.button.blog-button:hover,
.button.blog-button:focus {
  color: var(--white);
  background: var(--blog-green-dark);
  box-shadow: 0 22px 44px rgba(8, 127, 91, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: translateY(-1px);
}

.button.light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.panel-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.panel-topline strong {
  color: var(--white);
}

.orbit-card {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 58%),
    rgba(7, 17, 31, 0.34);
}

.partner-desk {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.82), rgba(15, 45, 86, 0.72)),
    radial-gradient(circle at 90% 20%, rgba(20, 184, 166, 0.24), transparent 34%);
  border: 1px solid rgba(157, 216, 255, 0.18);
  border-radius: var(--radius);
}

.desk-header,
.desk-main,
.desk-checks,
.desk-score {
  display: flex;
  align-items: center;
}

.desk-header {
  justify-content: space-between;
  gap: 12px;
}

.desk-pill,
.desk-status {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
}

.desk-pill {
  color: #bde6ff;
  background: rgba(37, 99, 235, 0.18);
}

.desk-status {
  color: #bdf8df;
  background: rgba(16, 185, 129, 0.15);
}

.desk-main {
  justify-content: space-between;
  gap: 22px;
  min-height: 172px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.desk-label {
  display: block;
  margin-bottom: 12px;
  color: #9dd8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-main strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.desk-main p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.desk-score {
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.24), rgba(20, 184, 166, 0.14));
  border: 1px solid rgba(157, 216, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
  cursor: default;
}

.desk-score span {
  display: block;
  width: 100%;
  padding: 6px 9px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-align: center;
  cursor: default;
  user-select: none;
}

.desk-scope {
  display: grid;
  gap: 8px;
}

.desk-scope-label {
  color: #9dd8ff;
  font-size: 11px;
  font-weight: 900;
}

.desk-checks {
  flex-wrap: wrap;
  gap: 8px;
}

.desk-checks span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
}

.orbit-card::before,
.orbit-card::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(157, 216, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.orbit-card::after {
  width: 150px;
  height: 150px;
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  padding: 22px;
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.88), rgba(20, 184, 166, 0.82));
  border-radius: 50%;
}

.orbit-core strong,
.orbit-core span {
  display: block;
}

.orbit-core span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  background: var(--teal);
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.dot-1 {
  top: 58px;
  right: 106px;
}

.dot-2 {
  bottom: 68px;
  left: 94px;
  background: var(--blue-500);
}

.dot-3 {
  right: 84px;
  bottom: 88px;
  background: var(--green);
}

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

.panel-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.panel-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--blue-500);
  border-radius: 50%;
}

.status-dot.teal {
  background: var(--teal);
}

.status-dot.green {
  background: var(--green);
}

.quick {
  background: linear-gradient(to bottom, var(--surface), var(--white));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.section-heading.compact {
  margin-bottom: 26px;
}

.services-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate-600);
  font-size: 18px;
}

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

.consultation-paths {
  border-top: 1px solid rgba(23, 32, 29, 0.2);
}

.consultation-paths a {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 88px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.2);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.consultation-paths a:hover,
.consultation-paths a:focus {
  padding-right: 14px;
  padding-left: 14px;
  color: var(--blog-green-dark);
  background: rgba(82, 118, 106, 0.06);
}

.consultation-paths span {
  font-size: 20px;
  font-weight: 850;
}

.consultation-paths small {
  color: var(--slate-600);
  font-size: 15px;
}

.consultation-paths b {
  color: var(--sage);
  font-size: 22px;
}

.quick-card,
.service-card,
.support-list article,
.process-list li {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.quick-card {
  display: grid;
  min-height: 168px;
  align-content: start;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: var(--shadow);
}

.quick-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
}

.quick-card.primary-quick {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-color: rgba(37, 99, 235, 0.4);
}

.quick-number,
.service-index {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.quick-card.accent .quick-number,
.quick-card.primary-quick .quick-number,
.quick-card.primary-quick small,
.quick-card.accent small {
  color: rgba(255, 255, 255, 0.76);
}

.quick-card strong {
  margin: 18px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.quick-card small {
  color: var(--slate-600);
  font-size: 14px;
}

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

.priority-services .service-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(20, 184, 166, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--blue-700));
  border-color: rgba(37, 99, 235, 0.45);
}

.service-card {
  min-height: 236px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.service-card.security {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(20, 184, 166, 0.06)),
    var(--white);
}

.service-card.featured .service-index,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p,
.support-list p,
.process-list p,
.contact-copy p,
.remote-card p,
.site-footer p {
  color: var(--slate-600);
}

.message {
  background: var(--white);
}

.message-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  padding: 46px 0;
  border-top: 1px solid rgba(23, 32, 29, 0.22);
  border-bottom: 1px solid rgba(23, 32, 29, 0.22);
}

.message-card h2 {
  margin-bottom: 0;
}

.message-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.message-copy p {
  margin-bottom: 0;
  color: var(--slate-700);
  font-size: 18px;
}

.support {
  background: var(--surface);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 32, 29, 0.2);
  border-bottom: 1px solid rgba(23, 32, 29, 0.2);
}

.service-list article {
  min-height: 224px;
  padding: 34px 32px 30px 0;
}

.service-list article + article {
  padding-left: 32px;
  border-left: 1px solid rgba(23, 32, 29, 0.2);
}

.service-list h3 {
  margin-top: 38px;
  font-size: 25px;
}

.service-list p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.service-kicker {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
}

.support-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-600);
  font-weight: 900;
  background: var(--sky-100);
  border-radius: 8px;
}

.support-list p {
  margin-bottom: 0;
}

.proof {
  color: var(--ink);
  background: var(--paper);
}

.proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  column-gap: 88px;
  align-items: end;
}

.proof-intro .eyebrow,
.proof-intro h2 {
  grid-column: 1;
}

.proof-intro h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.proof-intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 4px;
  color: #55635e;
  font-size: 17px;
}

.proof-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 58px 0 0;
  border-top: 1px solid rgba(23, 32, 29, 0.24);
  border-bottom: 1px solid rgba(23, 32, 29, 0.24);
}

.proof-principles div {
  padding: 28px 28px 28px 0;
}

.proof-principles div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(23, 32, 29, 0.2);
}

.proof-principles dt {
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
}

.proof-principles dd {
  margin: 0;
  color: #43514c;
  font-size: 16px;
}

.homepage-case-list {
  display: grid;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(23, 32, 29, 0.24);
}

.homepage-case-list[hidden] {
  display: none;
}

.homepage-case-item {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1fr);
  gap: 48px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 32, 29, 0.2);
}

.homepage-case-item h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.homepage-case-copy {
  display: grid;
  gap: 10px;
}

.homepage-case-copy p {
  margin: 0;
  color: #4a5953;
}

.homepage-case-copy strong {
  color: var(--blog-green-dark);
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(23, 32, 29, 0.2);
  border-bottom: 1px solid rgba(23, 32, 29, 0.2);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 176px;
  padding: 26px 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.process-list li + li {
  border-left: 1px solid rgba(23, 32, 29, 0.2);
}

.process-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy-900);
  border-radius: 50%;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.remote {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.remote-card {
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.remote-card p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
}

.remote-action {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  justify-items: end;
}

.remote-button {
  min-height: 60px;
  padding: 0 26px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.28);
}

.remote-button span {
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
}

.remote-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.note-feature {
  background: var(--surface);
}

.note-feature-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.note-feature-link {
  flex: 0 0 auto;
}

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

.homepage-note-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  min-height: 196px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.homepage-note-card:hover,
.homepage-note-card:focus {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: var(--shadow);
}

.homepage-note-cover {
  width: 132px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--sky-100);
}

.homepage-note-copy {
  display: grid;
  min-width: 0;
  align-content: start;
}

.homepage-note-tag {
  justify-self: start;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  background: var(--sky-100);
  border-radius: 999px;
}

.homepage-note-card strong {
  font-size: 20px;
  line-height: 1.4;
}

.homepage-note-summary {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-info p {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.contact-info strong {
  color: var(--navy-900);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card {
  border: var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.05)),
    var(--white);
}

.contact-card-label {
  width: fit-content;
  padding: 7px 10px;
  color: var(--blue-700);
  background: var(--sky-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-card h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.contact-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 4px 0;
  list-style: none;
}

.contact-topic-list li {
  padding: 11px 12px;
  color: var(--slate-600);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  font-size: 14px;
}

.contact-button {
  width: fit-content;
}

.contact-note {
  min-height: 24px;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-grid {
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact {
  display: grid;
  gap: 3px;
}

.footer-keywords {
  max-width: 460px;
  text-align: right;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .proof-intro {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .service-grid,
  .note-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .message-card {
    grid-template-columns: 1fr;
  }

  .proof-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
    margin-top: 24px;
  }

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

  .support-method {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    min-height: 68px;
    padding: 0 14px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

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

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

  .site-nav .nav-destination {
    width: 100%;
    margin-top: 6px;
  }

  .site-nav .mobile-nav-destination {
    display: inline-flex !important;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .mobile-fixed-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(7, 17, 31, 0.28);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-fixed-cta.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-fixed-cta a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    background: var(--blue-600);
    border-radius: 8px;
  }

  .mobile-fixed-cta a.blog {
    background: var(--blog-green);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 78px;
  }

  h1 {
    margin-bottom: 28px;
    line-height: 1.16;
  }

  .hero-text {
    max-width: 34rem;
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-scope {
    margin-top: 28px;
    line-height: 1.9;
  }

  .hero-stats,
  .quick-grid,
  .service-grid,
  .service-list,
  .note-feature-grid,
  .process-list,
  .contact-topic-list,
  .proof-principles {
    grid-template-columns: 1fr;
  }

  .consultation-paths a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 18px;
    padding: 20px 2px;
  }

  .consultation-paths small {
    grid-column: 1;
  }

  .consultation-paths b {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .service-list article,
  .service-list article + article {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
  }

  .service-list article + article {
    border-top: 1px solid rgba(23, 32, 29, 0.2);
  }

  .service-list h3 {
    margin-top: 20px;
  }

  .process-list li + li {
    border-left: 0;
    border-top: 1px solid rgba(23, 32, 29, 0.2);
  }

  .process-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 16px;
    min-height: auto;
    padding: 22px 0;
  }

  .process-list span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .process-list strong,
  .process-list p {
    grid-column: 2;
  }

  .process-list p {
    margin-bottom: 0;
  }

  .proof-principles div,
  .proof-principles div + div {
    padding: 22px 0;
    border-left: 0;
  }

  .proof-principles div + div {
    border-top: 1px solid rgba(23, 32, 29, 0.2);
  }

  .homepage-case-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .note-feature-header {
    display: grid;
    align-items: start;
  }

  .note-feature-link {
    width: 100%;
    justify-content: center;
  }

  .homepage-note-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 16px;
  }

  .homepage-note-cover {
    width: 96px;
    border-radius: 10px;
  }

  .homepage-note-summary {
    -webkit-line-clamp: 2;
  }

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

  .message-card {
    padding: 28px 0;
  }

  .support-method {
    margin-top: 18px;
  }

  .orbit-card {
    min-height: 240px;
  }

  .remote-card,
  .footer-grid {
    display: grid;
  }

  .remote-action {
    justify-items: stretch;
  }

  .remote-button {
    width: 100%;
  }

  .remote-action p {
    text-align: center;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-info p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-keywords {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 39px;
  }

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

  .support-method-heading,
  .support-method-list,
  .support-method-note {
    padding-right: 22px;
    padding-left: 22px;
  }

  .support-method-list li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .brand small {
    display: none;
  }
}
