:root {
  --blue: #1769e0;
  --blue-dark: #0a2a66;
  --navy: #071a3f;
  --green: #22b84b;
  --orange: #ff9800;
  --purple: #754cff;
  --cyan: #16b9ce;
  --ink: #111827;
  --muted: #677185;
  --line: #e4e9f1;
  --soft: #f4f7fb;
  --white: #fff;
  --container: 1320px;
  --shadow: 0 30px 80px rgba(15, 45, 97, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select):focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.38);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(225, 231, 240, 0.72);
  backdrop-filter: blur(18px);
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(22, 47, 88, 0.08);
}

.header-inner {
  width: min(calc(100% - 64px), 1440px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-original {
  width: 92px;
  height: 80px;
  overflow: hidden;
  justify-content: center;
}

.header-brand-logo {
  width: 92px;
  height: 92px;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 42px;
}

.mark-line {
  position: absolute;
  left: 21px;
  top: 13px;
  width: 5px;
  height: 25px;
  background: linear-gradient(180deg, #64d51d, #10af4a);
  border-radius: 5px;
  transform: rotate(-3deg);
}

.mark-line::before,
.mark-line::after {
  content: "";
  position: absolute;
  left: -12px;
  width: 20px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff9b00, #25c34f);
  transform-origin: right;
}

.mark-line::before {
  top: 15px;
  transform: rotate(25deg);
}

.mark-line::after {
  top: 20px;
  background: linear-gradient(90deg, #1769e0, #25c34f);
  transform: rotate(-24deg);
}

.mark-leaf {
  position: absolute;
  display: block;
  width: 20px;
  height: 11px;
  background: linear-gradient(135deg, #b0ed00, #1cc841);
  border-radius: 100% 0 100% 0;
}

.mark-leaf-one {
  left: 4px;
  top: 6px;
  transform: rotate(23deg);
}

.mark-leaf-two {
  right: 3px;
  top: 3px;
  transform: rotate(73deg) scale(0.9);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 7px;
  color: #2b60b9;
  font-size: 9px;
  letter-spacing: 0.34em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: #3f4858;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 24px;
}

.header-cta {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 19px;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.header-cta svg,
.btn svg,
.form-submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-cta:hover {
  background: #0e54bf;
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100vh;
  max-height: 1040px;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 79% 46%, rgba(66, 137, 255, 0.15), transparent 24%),
    linear-gradient(135deg, #fafdff 0%, #edf5ff 58%, #f7fbff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(50, 108, 190, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 108, 190, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 6%, #000 55%, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  width: 440px;
  height: 440px;
  right: -210px;
  top: 6%;
  border: 1px solid rgba(23, 105, 224, 0.16);
}

.hero-orb-two {
  width: 620px;
  height: 620px;
  left: -360px;
  bottom: -360px;
  background: radial-gradient(circle, rgba(35, 184, 75, 0.11), transparent 66%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: calc(100% - 94px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 52px;
  padding-bottom: 34px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-top: 16px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.section-kicker {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-kicker span {
  color: #a2aaba;
  letter-spacing: 0;
}

.hero h1 {
  margin: 27px 0 28px;
  color: #0b1d3c;
  font-size: clamp(54px, 5.15vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 11px;
  left: 3px;
  right: -3px;
  bottom: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 105, 224, 0.13), rgba(34, 184, 75, 0.2));
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #5d6a7e;
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(23, 105, 224, 0.24);
}

.btn-primary:hover {
  background: #1057c4;
  box-shadow: 0 18px 38px rgba(23, 105, 224, 0.3);
}

.btn-ghost {
  color: #23324d;
  background: rgba(255, 255, 255, 0.65);
  border-color: #dce4ef;
  backdrop-filter: blur(8px);
}

.play-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  height: min(680px, 72vh);
  min-height: 600px;
}

.visual-backdrop {
  position: absolute;
  width: 570px;
  height: 570px;
  top: 47%;
  left: 51%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 36%, rgba(255,255,255,0.95), rgba(229,240,255,0.83) 46%, rgba(189,217,255,0.62));
  box-shadow: inset 0 0 0 1px rgba(90, 146, 225, 0.2), 0 50px 100px rgba(29, 87, 167, 0.15);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(31, 109, 220, 0.2);
  border-radius: 50%;
  inset: -32px;
}

.orbit-two {
  inset: 48px -84px;
  transform: rotate(36deg);
  border-color: rgba(34, 184, 75, 0.16);
}

.case-frame {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.94);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 38px 82px rgba(21, 66, 130, 0.25);
}

.hero-case-main {
  width: 338px;
  height: 545px;
  top: 50%;
  left: 43%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.hero-case-side {
  width: 214px;
  height: 348px;
  right: 2%;
  top: 24%;
  transform: rotate(7deg);
}

.hero-brand-board {
  display: flex;
  flex-direction: column;
  padding: 25px 23px 23px;
  background:
    radial-gradient(circle at 78% 20%, rgba(80, 155, 255, 0.24), transparent 27%),
    linear-gradient(155deg, #fafdff, #e8f2ff 56%, #f8fbff);
}

.brand-board-head,
.course-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f7e93;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-board-head i {
  padding: 5px 7px;
  color: #168548;
  background: rgba(34, 184, 75, 0.1);
  border-radius: 99px;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0;
}

.brand-board-symbol,
.identity-core {
  position: relative;
  width: 158px;
  height: 158px;
  margin: 50px auto 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0c4da8, #2485f0);
  box-shadow: 0 28px 60px rgba(23, 105, 224, 0.27);
}

.brand-board-symbol::before,
.identity-core::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.brand-board-symbol span,
.identity-core > span {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 39px;
  height: 43px;
  border: 7px solid #fff;
  border-top: 0;
  border-radius: 0 0 28px 28px;
}

.brand-board-symbol span::before,
.identity-core > span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 5px;
  height: 66px;
  border-radius: 8px;
  background: #fff;
  transform: translateX(-50%);
}

.brand-board-symbol i,
.brand-board-symbol b,
.identity-core > i,
.identity-core > b {
  position: absolute;
  top: 38px;
  width: 42px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: #6fe047;
}

.brand-board-symbol i,
.identity-core > i { left: 35px; transform: rotate(22deg); }
.brand-board-symbol b,
.identity-core > b { right: 35px; transform: rotate(68deg); }

.brand-board-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}

.brand-board-copy small {
  color: #1a68d6;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-board-copy strong {
  color: #0c2147;
  font-size: 22px;
  line-height: 1.4;
}

.brand-board-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 18px;
}

.brand-board-palette i { height: 25px; border-radius: 4px; background: #1769e0; }
.brand-board-palette i:nth-child(2) { background: #22b84b; }
.brand-board-palette i:nth-child(3) { background: #ff9800; }
.brand-board-palette i:nth-child(4) { background: #754cff; }

.hero-course-board {
  padding: 20px 17px;
  background: linear-gradient(150deg, #fff, #edf5ff);
}

.course-board-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.course-board-title {
  margin-top: 42px;
  color: #142746;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.course-board-title strong { color: var(--blue); font-size: 12px; }

.course-board-chart {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 28px;
  padding: 13px;
  border-radius: 8px;
  background: #e8f1ff;
}

.course-board-chart i { flex: 1; height: 32%; border-radius: 3px 3px 0 0; background: #7bb0f7; }
.course-board-chart i:nth-child(2) { height: 67%; background: #438bed; }
.course-board-chart i:nth-child(3) { height: 48%; background: #61c879; }
.course-board-chart i:nth-child(4) { height: 86%; background: #1769e0; }

.course-board-lines { display: grid; gap: 8px; margin-top: 20px; }
.course-board-lines span { height: 5px; border-radius: 9px; background: #d3dfef; }
.course-board-lines span:nth-child(2) { width: 76%; }
.course-board-lines span:nth-child(3) { width: 52%; }

.floating-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(209, 222, 239, 0.85);
  border-radius: 99px;
  color: #243654;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 16px 40px rgba(22, 67, 130, 0.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  animation: float 5s ease-in-out infinite;
}

.floating-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 184, 75, 0.1);
}

.pill-one {
  top: 13%;
  left: 2%;
}

.pill-two {
  right: 0;
  bottom: 19%;
  animation-delay: -2s;
}

.pill-two i {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.12);
}

.floating-card {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(217, 228, 242, 0.88);
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 42px rgba(23, 71, 136, 0.15);
  backdrop-filter: blur(10px);
}

.floating-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #4a8eff);
  font-weight: 700;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card small {
  color: #7b879a;
  font-size: 10px;
  letter-spacing: 0.08em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  width: min(calc(100% - 80px), var(--container));
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(111, 143, 187, 0.25);
  transform: translateX(-50%);
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #5e6a7d;
  font-size: 12px;
}

.hero-tags i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a8b7ca;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8290a4;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.scroll-cue i {
  position: relative;
  width: 25px;
  height: 39px;
  border: 1px solid #a6b4c7;
  border-radius: 20px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, -3px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

.mission-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 90px;
}

.mission-copy h2,
.section-heading h2,
.process-heading h2,
.capability-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: #101d34;
  font-size: clamp(40px, 4vw, 59px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.mission-detail {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: end;
  gap: 70px;
  margin-top: 48px;
}

.mission-detail p,
.section-heading > p,
.process-heading > p,
.about-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #202b3e;
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.mission-visual {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 420px;
  margin-top: 90px;
}

.mission-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
}

.mission-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,0.08);
}

.mission-panel-strategy {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(8, 40, 100, 0.95), rgba(17, 92, 194, 0.76)),
    radial-gradient(circle at 90% 20%, #2b7ee9, #092256);
}

.mission-panel-design {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 126, 80, 0.94), rgba(67, 190, 83, 0.75)),
    #168850;
}

.panel-number {
  font-size: 13px;
  opacity: 0.74;
}

.mission-panel small {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.66;
}

.mission-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 600;
}

.mini-avatar-stack {
  position: absolute;
  top: 52px;
  right: 42px;
  display: flex;
}

.mini-avatar-stack span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-left: -15px;
  border: 3px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  color: #173b47;
  background: #f7fdff;
  box-shadow: 0 10px 25px rgba(3, 75, 43, 0.2);
  font-size: 18px;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 72px;
}

.section-heading .section-kicker {
  max-width: 205px;
  margin-bottom: 30px;
}

.section-heading > p {
  max-width: 430px;
  padding-bottom: 8px;
}

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

.service-card {
  position: relative;
  min-height: 368px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 32px 36px;
  background: #fff;
  border: 1px solid #e6ebf2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 105, 224, 0.18);
  outline-offset: 4px;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -150px;
  top: 80px;
  border-radius: 50%;
  background: rgba(23, 105, 224, 0.06);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scale(1.35);
}

.service-featured {
  border-top: 3px solid var(--blue);
}

.service-dark {
  color: #fff;
  background: linear-gradient(145deg, #0a2453, #0d438d);
  border-color: transparent;
}

.service-dark::before {
  background: rgba(255,255,255,0.06);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #98a3b3;
  font-size: 12px;
}

.service-top i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  color: #46546a;
  font-style: normal;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-dark .service-top i {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.service-card:hover .service-top i {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin: 18px 0 30px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,0.15);
  font-size: 25px;
  font-weight: 400;
}

.service-icon-blue { background: linear-gradient(145deg, #1769e0, #69a2ff); }
.service-icon-green { background: linear-gradient(145deg, #16a246, #71d856); }
.service-icon-orange { background: linear-gradient(145deg, #ff7b00, #ffbd3c); }
.service-icon-purple { background: linear-gradient(145deg, #6841df, #aa7cff); }
.service-icon-cyan { background: linear-gradient(145deg, #09a3bb, #5bd7e7); }

.service-card h3 {
  margin: 0 0 15px;
  font-size: 23px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.service-dark p {
  color: rgba(255,255,255,0.67);
}

.service-standards {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.standards-grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standards-grid > div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 26px 30px 26px 55px;
  border-left: 1px solid var(--line);
}

.standards-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.standards-grid span {
  position: absolute;
  left: 22px;
  top: 34px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.standards-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.standards-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.deliverables {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(23,105,224,0.08), transparent 30%),
    #fff;
}

.deliverables .section-heading {
  grid-template-columns: 1.6fr .4fr;
  gap: 58px;
}

.deliverables .section-heading h2 {
  font-size: clamp(40px, 4vw, 54px);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.deliverable-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #f8faff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  border-color: #cbdcf4;
  box-shadow: 0 18px 45px rgba(31,70,126,0.09);
}

.deliverable-card-main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 85% 14%, rgba(91,156,255,.45), transparent 26%),
    linear-gradient(145deg, #0b55bc, #0a357c 70%, #07275e);
}

.deliverable-card-main::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 50px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.deliverable-index {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(24,67,128,.12);
  font-size: 12px;
  font-weight: 800;
}

.deliverable-card:not(.deliverable-card-main) .deliverable-index {
  margin-bottom: 32px;
}

.deliverable-card small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.deliverable-card h3 {
  margin: 12px 0;
  font-size: 23px;
}

.deliverable-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.deliverable-card-main small,
.deliverable-card-main p {
  color: rgba(255,255,255,.68);
}

.deliverable-card-main h3 {
  margin: 16px 0;
  font-size: 34px;
}

.deliverable-card-main ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-card-main li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}

.deliverable-card-main li::before {
  content: "✓";
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: 9px;
}

.deliverable-card-accent {
  background: linear-gradient(145deg, #eff9f2, #f8fcf9);
}

.process {
  overflow: hidden;
}

.process-heading {
  margin-bottom: 80px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-item {
  position: relative;
  min-height: 302px;
  padding: 35px 25px 38px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease, color 0.3s ease;
}

.process-item:first-child {
  border-left: 1px solid var(--line);
}

.process-number {
  color: #9aa4b4;
  font-size: 12px;
  transition: color 0.3s ease;
}

.process-item h3 {
  margin: 70px 0 18px;
  font-size: 22px;
  font-weight: 600;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  transition: color 0.3s ease;
}

.process-item > i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.process-item:hover,
.process-item.active {
  color: #fff;
  background: var(--blue);
}

.process-item:hover .process-number,
.process-item.active .process-number,
.process-item:hover p,
.process-item.active p {
  color: rgba(255,255,255,0.68);
}

.cases .section-heading {
  align-items: end;
}

.case-heading-aside {
  width: min(540px, 100%);
  display: grid;
  justify-items: end;
  gap: 22px;
}

.case-heading-aside > p {
  max-width: 500px;
  margin: 0;
  color: #69768b;
  font-size: 14px;
  line-height: 1.85;
  text-align: right;
}

.case-filters {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 8px;
}

.case-filters button {
  padding: 9px 15px;
  color: #687489;
  background: transparent;
  border: 1px solid #dce3ec;
  border-radius: 99px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.case-filters button:hover,
.case-filters button.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.work-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-card.hidden {
  display: none;
}

.work-image,
.digital-preview {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #e8eef7;
}

.work-card-tall .work-image {
  height: 690px;
}

.work-image img,
.digital-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s cubic-bezier(.2,.7,.2,1);
}

.work-card:hover .work-image img,
.work-card:hover .digital-preview img {
  transform: scale(1.035);
}

.case-visual {
  isolation: isolate;
  background: #dce8f8;
}

.case-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 18, 46, 0.06), transparent 24%, transparent 72%, rgba(4, 18, 46, 0.12));
  box-shadow: inset 0 0 0 1px rgba(12, 45, 93, 0.06);
}

.case-visual .privacy-badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  color: #136c3b;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(12, 38, 78, 0.12);
}

.case-visual-brand img { object-position: center center; }
.case-visual-courseware img,
.case-visual-assets img { object-position: center center; }
.case-visual-profile img { object-position: center center; }
.case-visual-digital img { object-position: center 54%; }

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 2px 0;
}

.work-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-meta h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}

.work-meta > .work-action {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dce3ec;
  border-radius: 50%;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

.work-card:hover .work-meta > .work-action,
.work-meta > .work-action:hover,
.work-meta > .work-action:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.work-card-digital {
  grid-column: 1 / -1;
}

.anonymous-visual {
  padding: 42px;
  isolation: isolate;
}

.privacy-badge {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: #167c43;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 184, 75, 0.22);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.identity-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(145deg, #eaf3ff, #d7e9ff 58%, #f7fbff);
}

.identity-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  left: 50%;
  top: 41%;
  border: 1px solid rgba(23, 105, 224, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.identity-orbit::before,
.identity-orbit::after {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(23, 105, 224, 0.11);
  border-radius: 50%;
}

.identity-orbit::after { inset: 110px; }

.identity-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.identity-orbit i:nth-child(1) { left: 16%; top: 20%; }
.identity-orbit i:nth-child(2) { right: 7%; top: 45%; background: var(--green); }
.identity-orbit i:nth-child(3) { left: 32%; bottom: 2%; background: var(--orange); }

.identity-core {
  z-index: 2;
  width: 210px;
  height: 210px;
  flex: 0 0 auto;
  margin: 90px auto 58px;
}

.identity-core > span { left: 51px; right: 51px; bottom: 50px; height: 55px; border-width: 9px; }
.identity-core > span::before { height: 84px; width: 7px; }
.identity-core > i,
.identity-core > b { top: 49px; width: 54px; height: 31px; }
.identity-core > i { left: 45px; }
.identity-core > b { right: 45px; }

.identity-name {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.identity-name small,
.asset-title small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.identity-name strong { color: #102343; font-size: 29px; }
.identity-name span { color: #758197; font-size: 11px; letter-spacing: 0.08em; }

.identity-colors {
  z-index: 2;
  width: min(340px, 76%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.identity-colors i { height: 13px; border-radius: 9px; background: var(--blue); }
.identity-colors i:nth-child(2) { background: var(--green); }
.identity-colors i:nth-child(3) { background: var(--orange); }
.identity-colors i:nth-child(4) { background: var(--purple); }

.courseware-visual {
  background:
    radial-gradient(circle at 85% 12%, rgba(78, 148, 245, 0.33), transparent 28%),
    linear-gradient(135deg, #06285d, #0f5fba);
}

.courseware-visual .privacy-badge { color: #d9e9ff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2); }

.courseware-window {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -5%;
  height: 79%;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 13px 13px 0 0;
  background: #f8fbff;
  box-shadow: 0 40px 70px rgba(0, 13, 42, 0.38);
  transform: perspective(1000px) rotateX(3deg) rotateY(-4deg);
}

.courseware-toolbar {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: #6d7a90;
  background: #e9f0f9;
  font-size: 9px;
}

.courseware-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: #8ca7ca; }
.courseware-toolbar span { margin-left: auto; }

.courseware-layout { height: calc(100% - 45px); display: grid; grid-template-columns: 88px 1fr; }
.courseware-layout aside { display: grid; align-content: start; gap: 12px; padding: 18px 12px; background: #f0f4f9; }
.courseware-layout aside i { height: 54px; border-radius: 4px; background: #dbe6f4; }
.courseware-layout aside i:first-child { background: #9bc1f2; box-shadow: inset 3px 0 var(--blue); }
.courseware-layout main { position: relative; overflow: hidden; padding: 45px 36px; background: radial-gradient(circle at 85% 20%, #dceaff, transparent 32%), #fff; }
.courseware-layout main small { color: var(--blue); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; }
.courseware-layout main strong { display: block; margin: 14px 0 25px; color: #11294e; font-size: 30px; line-height: 1.35; }
.courseware-layout main > span { display: block; width: 72%; height: 6px; margin-top: 10px; border-radius: 9px; background: #dce5f1; }
.courseware-layout main > span:nth-of-type(2) { width: 52%; }
.courseware-layout main > div { display: flex; align-items: flex-end; gap: 10px; height: 80px; margin-top: 30px; }
.courseware-layout main > div i { width: 22px; height: 38%; border-radius: 3px 3px 0 0; background: #75abf1; }
.courseware-layout main > div i:nth-child(2) { height: 75%; background: var(--blue); }
.courseware-layout main > div i:nth-child(3) { height: 56%; background: var(--green); }

.asset-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.8), transparent 23%),
    linear-gradient(145deg, #fff6e6, #eaf5ff 52%, #edfbea);
}

.asset-title { margin: 48px 0 30px; }
.asset-title strong { display: block; margin-top: 10px; color: #102343; font-size: 29px; }

.asset-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.asset-grid > div {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid rgba(23, 105, 224, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 25px rgba(33, 77, 139, 0.08);
}

.asset-grid b { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--blue); border-radius: 10px; font-size: 16px; }
.asset-grid > div:nth-child(2) b { background: var(--green); }
.asset-grid > div:nth-child(3) b { background: var(--orange); }
.asset-grid > div:nth-child(4) b { background: var(--purple); }
.asset-grid > div:nth-child(5) b { background: var(--cyan); }
.asset-grid > div:nth-child(6) b { background: #2458a7; }
.asset-grid span { color: #3f4d64; font-size: 11px; font-weight: 600; }

.profile-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(42, 98, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 98, 180, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #e6f0ff, #f8fbff);
  background-size: 35px 35px, 35px 35px, auto;
}

.profile-visual > .privacy-badge { position: absolute; top: 32px; left: 32px; }

.profile-sheet {
  width: 76%;
  min-height: 82%;
  padding: 37px;
  border: 1px solid #dce7f6;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 60px rgba(34, 75, 135, 0.17);
  transform: rotate(2deg);
}

.profile-sheet header { display: flex; align-items: center; gap: 17px; padding-bottom: 25px; border-bottom: 1px solid #e2e8f0; }
.profile-monogram { display: grid; width: 58px; height: 58px; place-items: center; color: #fff; background: linear-gradient(145deg, var(--blue), #65a1f6); border-radius: 13px; font-size: 14px; font-weight: 700; }
.profile-sheet header > div:last-child { display: flex; flex-direction: column; gap: 7px; }
.profile-sheet header small { color: var(--blue); font-size: 7px; font-weight: 700; letter-spacing: 0.13em; }
.profile-sheet header strong { color: #13294b; font-size: 20px; }
.profile-sheet section { margin-top: 27px; }
.profile-sheet section small { display: block; margin-bottom: 13px; color: #263a59; font-size: 10px; font-weight: 700; }
.profile-sheet section span { display: block; width: 100%; height: 6px; margin-top: 9px; border-radius: 9px; background: #e1e8f2; }
.profile-sheet section span:nth-of-type(2) { width: 78%; }
.profile-sheet section span:nth-of-type(3) { width: 58%; }
.profile-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 27px; }
.profile-metrics i { height: 55px; border-radius: 8px; background: #e8f1ff; border: 1px solid #d9e7fa; }
.profile-metrics i:nth-child(2) { background: #ebf8ed; border-color: #d8eedc; }
.profile-metrics i:nth-child(3) { background: #fff5df; border-color: #f3e6c5; }
.profile-sheet blockquote { margin: 31px 0 0; padding: 15px 17px; color: #245aa8; background: #edf5ff; border-left: 3px solid var(--blue); font-size: 11px; font-weight: 600; }

.case-privacy-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 50px 0 0;
  padding: 20px 24px;
  color: #68758a;
  background: #fff;
  border: 1px solid #e1e8f1;
  font-size: 12px;
  line-height: 1.7;
}

.case-privacy-note span {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: #168548;
  background: rgba(34, 184, 75, 0.1);
  border-radius: 99px;
  font-weight: 700;
}

.digital-preview {
  height: 570px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(46, 117, 233, 0.55), transparent 30%),
    linear-gradient(135deg, #051b42, #0c428c);
}

.digital-preview::before,
.digital-preview::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.digital-preview::before { width: 600px; height: 600px; right: -140px; top: -310px; }
.digital-preview::after { width: 390px; height: 390px; left: -100px; bottom: -220px; }

.dash-main {
  width: min(78%, 910px);
  height: 73%;
  display: grid;
  grid-template-rows: 48px 90px 1fr;
  gap: 18px;
  padding: 24px 28px;
  margin-left: 74px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 8px;
  background: rgba(249, 252, 255, 0.95);
  box-shadow: 0 45px 90px rgba(0, 10, 31, 0.42);
  transform: perspective(1200px) rotateX(4deg) rotateY(-5deg);
}

.dash-sidebar {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 20%;
  width: 90px;
  height: 64%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  border-radius: 8px;
  background: rgba(9, 28, 65, 0.97);
  box-shadow: 0 25px 60px rgba(0, 10, 30, 0.4);
}

.dash-sidebar b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
}

.dash-sidebar i {
  width: 28px;
  height: 5px;
  border-radius: 9px;
  background: rgba(255,255,255,0.18);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e9f1;
  color: #1d2e4a;
  font-size: 14px;
  font-weight: 700;
}

.dash-top em {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dce8fa;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dash-stats i {
  border-radius: 7px;
  background: linear-gradient(120deg, #ecf3ff, #f8fbff);
  border: 1px solid #e1eaf7;
}

.dash-chart {
  position: relative;
  overflow: hidden;
  border: 1px solid #e1e8f1;
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, transparent, transparent 35px, #edf1f6 36px);
}

.dash-chart span {
  position: absolute;
  inset: 32% 6% 9%;
  clip-path: polygon(0 82%, 14% 53%, 30% 66%, 48% 28%, 64% 40%, 80% 8%, 100% 21%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(23,105,224,0.58), rgba(23,105,224,0.04));
}

.capabilities {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #061b40;
}

.capability-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -200px;
  top: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 102, 220, 0.5), transparent 67%);
}

.capability-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
  min-height: 590px;
}

.section-kicker-light {
  max-width: 220px;
  color: #79aaff;
  border-color: rgba(255,255,255,0.16);
}

.capability-copy h2,
.contact-copy h2 {
  margin-top: 36px;
  color: #fff;
}

.capability-copy > p {
  max-width: 510px;
  margin: 30px 0 38px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 2;
}

.btn-light {
  color: #0a2a66;
  background: #fff;
}

.product-stage {
  position: relative;
  height: 500px;
}

.laptop {
  position: absolute;
  width: 610px;
  right: 10px;
  top: 60px;
  filter: drop-shadow(0 40px 55px rgba(0, 7, 24, 0.52));
}

.laptop-screen {
  height: 370px;
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 13px;
  border: 7px solid #17263f;
  border-radius: 18px 18px 7px 7px;
  background: #f5f8fc;
}

.laptop-base {
  width: 680px;
  height: 18px;
  margin-left: -35px;
  border-radius: 2px 2px 16px 16px;
  background: linear-gradient(#9faabc, #566378);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 14px;
  border-radius: 7px;
  background: #0d2a5c;
}

.product-sidebar b {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
}

.product-sidebar span {
  width: 26px;
  height: 4px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
}

.product-content {
  display: grid;
  grid-template-rows: 40px 73px 1fr;
  gap: 13px;
  padding: 10px 17px;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #172740;
  border-bottom: 1px solid #e1e7ee;
  font-size: 12px;
  font-weight: 700;
}

.product-header i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dce8f8;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.product-metrics i {
  border: 1px solid #e2e9f3;
  border-radius: 6px;
  background: linear-gradient(145deg, #eff5ff, #fff);
}

.product-chart {
  position: relative;
  overflow: hidden;
  padding: 16px;
  color: #263752;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: repeating-linear-gradient(0deg, transparent, transparent 29px, #edf1f5 30px);
  font-size: 10px;
}

.product-chart span {
  position: absolute;
  inset: 35% 5% 10%;
  clip-path: polygon(0 75%, 15% 48%, 30% 66%, 46% 31%, 61% 43%, 78% 12%, 100% 27%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(23,105,224,0.55), rgba(23,105,224,0.02));
}

.phone {
  position: absolute;
  z-index: 4;
  left: 6px;
  bottom: 8px;
  width: 195px;
  height: 390px;
  overflow: hidden;
  padding: 31px 14px 14px;
  color: #14233d;
  border: 7px solid #1b293d;
  border-radius: 30px;
  background: #f8fbff;
  box-shadow: 0 38px 65px rgba(0, 7, 24, 0.55);
  transform: rotate(-5deg);
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 5px;
  background: #677386;
  transform: translateX(-50%);
}

.phone-brand {
  margin-bottom: 13px;
  font-size: 11px;
  font-weight: 700;
}

.phone-hero {
  height: 145px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #1665dc, #5ca0ff 65%, #58c67b);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.phone-cards i {
  height: 118px;
  border-radius: 8px;
  background: #e8eef7;
}

.phone-cards i:last-child {
  background: #edf7ef;
}

.capability-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.capability-list > div {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 27px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.capability-list > div:first-child {
  border-left: 1px solid rgba(255,255,255,0.16);
}

.capability-list span {
  color: #6fa4fb;
  font-size: 10px;
}

.capability-list strong {
  margin: 19px 0 9px;
  font-size: 17px;
  font-weight: 500;
}

.capability-list small {
  color: rgba(255,255,255,0.43);
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.about-brand {
  position: relative;
  height: 590px;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.95), rgba(233, 242, 255, 0.78)),
    #eef4fc;
}

.about-brand::before,
.about-brand::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 105, 224, 0.13);
  border-radius: 50%;
}

.about-brand::before { width: 470px; height: 470px; }
.about-brand::after { width: 620px; height: 620px; }

.about-brand img {
  position: relative;
  z-index: 2;
  width: 70%;
  border-radius: 18px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 38px rgba(45, 76, 120, 0.14));
}

.about-copy .section-kicker {
  max-width: 220px;
  margin-bottom: 37px;
}

.about-copy > p {
  margin-top: 34px;
}

.value-row {
  display: flex;
  gap: 34px;
  margin-top: 42px;
}

.value-row span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #34415a;
  font-size: 14px;
  font-weight: 600;
}

.value-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23,105,224,0.09);
}

.value-row span:nth-child(2) i { background: var(--green); box-shadow: 0 0 0 5px rgba(34,184,75,0.09); }
.value-row span:nth-child(3) i { background: var(--orange); box-shadow: 0 0 0 5px rgba(255,152,0,0.09); }

.company-identity {
  display: grid;
  gap: 7px;
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: #f8faff;
}

.company-identity > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.company-identity strong {
  color: var(--ink);
  font-size: 15px;
}

.company-identity small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 30px 0 24px;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -.045em;
}

.faq-intro > p {
  max-width: 440px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.faq-list {
  border-top: 1px solid #cfd8e6;
}

.faq-list details {
  border-bottom: 1px solid #cfd8e6;
}

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary i {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #cfd9e8;
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.faq-list details[open] summary i {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 54px 26px 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(132deg, #125ecb, #0a3e93 52%, #06275f);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 70px 70px;
}

.contact-orb {
  position: absolute;
  right: -280px;
  top: -280px;
  width: 700px;
  height: 700px;
  border: 90px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
}

.contact-copy > p {
  max-width: 500px;
  margin-top: 27px;
  color: rgba(255,255,255,0.65);
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.contact-points i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.contact-form {
  padding: 44px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 40px 90px rgba(1, 21, 61, 0.32);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label:not(.privacy-check) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  color: #344159;
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0 14px;
  color: #26334a;
  background: #f7f9fc;
  border: 1px solid #e2e7ee;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
}

.contact-form textarea {
  min-height: 105px;
  padding-block: 13px 30px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,105,224,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aab2bf;
}

.details-field {
  position: relative;
}

.details-field > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.details-field > span small {
  color: #98a2b2;
  font-size: 9px;
  font-weight: 500;
}

.details-field em {
  position: absolute;
  right: 12px;
  bottom: 28px;
  color: #9ca6b5;
  font-size: 9px;
  font-style: normal;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 22px;
  color: #7a8596;
  font-size: 11px;
  line-height: 1.6;
  cursor: pointer;
}

.privacy-check input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  background: var(--blue);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: #0e55c0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 15px;
  color: #8590a1;
  font-size: 9px;
}

.form-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25ad65;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -14px;
  color: #657186;
  text-align: center;
  font-size: 12px;
}

.form-status.success {
  color: #13823a;
}

.form-status.error {
  color: #c13737;
}

.site-footer {
  padding-top: 80px;
  color: #ced6e4;
  background: #07152f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  padding-bottom: 65px;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand .brand-copy small {
  color: #7ea9ee;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #76859d;
  font-size: 13px;
  line-height: 1.9;
}

.footer-company-record {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: #76839a;
  font-size: 9px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-links a,
.footer-links span {
  color: #75849b;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #5f6d83;
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 23px;
}

.footer-bottom a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(23, 105, 224, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #0e55c0;
}

.back-to-top.context-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.mobile-conversion-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.2,.6,.2,1), transform 0.75s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 54px), var(--container)); }
  .header-inner { width: calc(100% - 44px); gap: 26px; }
  .desktop-nav { gap: 22px; }
  .hero-inner { grid-template-columns: 0.9fr 1.1fr; gap: 20px; }
  .hero h1 { font-size: 58px; }
  .hero-visual { transform: scale(0.9); transform-origin: center; }
  .mission-grid { grid-template-columns: 170px 1fr; gap: 60px; }
  .service-card { min-height: 350px; }
  .process-item { padding-inline: 18px; }
  .capability-grid { grid-template-columns: 0.8fr 1.2fr; gap: 20px; }
  .laptop { transform: scale(0.85); transform-origin: right center; }
  .phone { left: 50px; transform: rotate(-5deg) scale(0.88); transform-origin: bottom left; }
  .footer-top { grid-template-columns: 0.8fr 2.2fr; gap: 60px; }
}

@media (max-width: 980px) {
  .section { padding: 110px 0; }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .25s ease; }
  .site-header.menu-active .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .site-header.menu-active .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 29px;
    padding-top: 70px;
    background: rgba(255,255,255,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
  }
  .site-header.menu-active .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { font-size: 21px; font-weight: 600; }
  .mobile-nav-cta { margin-top: 15px; padding: 15px 24px; color: #fff; background: var(--blue); font-size: 15px !important; }
  .hero { height: auto; min-height: 1060px; max-height: none; }
  .hero-inner { height: auto; min-height: 970px; grid-template-columns: 1fr; padding: 100px 0 120px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(690px, 100%); height: 560px; min-height: 560px; margin: -10px auto 0; transform: scale(0.88); }
  .hero-bottom { width: calc(100% - 54px); }
  .scroll-cue { display: none; }
  .hero-tags { width: 100%; justify-content: center; flex-wrap: wrap; }
  .mission-grid { grid-template-columns: 1fr; gap: 45px; }
  .mission-grid > .section-kicker { max-width: 210px; }
  .mission-detail { grid-template-columns: 1fr; gap: 35px; }
  .text-link { width: 190px; }
  .mission-visual { grid-template-columns: 1fr; }
  .mission-panel { min-height: 360px; }
  .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .case-heading-aside { width: 100%; justify-items: start; }
  .case-heading-aside > p { text-align: left; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .standards-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .deliverable-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .deliverables .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .deliverable-card-main { grid-column: 1 / 3; grid-row: auto; min-height: 460px; }
  .process-list { grid-template-columns: 1fr; border: 0; }
  .process-item { min-height: 160px; padding: 28px 28px 26px 112px; border: 0; border-bottom: 1px solid var(--line); }
  .process-item:first-child { border-left: 0; border-top: 1px solid var(--line); }
  .process-item h3 { margin: 7px 0 12px; }
  .process-number { position: absolute; left: 30px; top: 34px; }
  .process-item > i { right: 28px; top: 35px; bottom: auto; }
  .case-grid { gap: 40px 18px; }
  .work-image { height: 430px; }
  .work-card-tall .work-image { height: 560px; }
  .digital-preview { height: 480px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-copy { max-width: 620px; }
  .product-stage { width: min(760px, 100%); margin: 20px auto 0; }
  .laptop { right: 2%; }
  .capability-list { grid-template-columns: repeat(2, 1fr); }
  .capability-list > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.16); }
  .capability-list > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .about-grid { grid-template-columns: 1fr; }
  .about-brand { height: 500px; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; max-width: 650px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 86px 0; }
  .site-header { height: 70px; }
  .site-header.scrolled { height: 64px; }
  .header-inner { width: calc(100% - 30px); }
  .brand-mark { width: 39px; transform: scale(0.9); transform-origin: left center; }
  .brand-original { width: 72px; height: 64px; }
  .header-brand-logo { width: 72px; height: 72px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 920px; padding-top: 70px; }
  .hero-inner { min-height: 830px; grid-template-columns: minmax(0, 1fr); padding: 70px 0 112px; gap: 18px; }
  .hero-copy { width: 100%; min-width: 0; }
  .eyebrow { font-size: 10px; }
  .hero h1 { margin: 23px 0 22px; font-size: clamp(42px, 12vw, 58px); line-height: 1.15; }
  .hero-copy > p { font-size: 14px; line-height: 1.9; }
  .hero-actions { margin-top: 30px; flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 52px; }
  .hero-visual { left: 50%; width: 610px; height: 430px; min-height: 430px; justify-self: start; margin-left: -305px; transform-origin: center top; }
  .hero-visual[data-reveal].revealed { transform: scale(0.62); }
  .visual-backdrop { width: 530px; height: 530px; }
  .hero-bottom { width: calc(100% - 36px); height: 100px; }
  .hero-tags { gap: 9px 13px; font-size: 10px; }
  .mission-copy h2,
  .section-heading h2,
  .process-heading h2,
  .capability-copy h2,
  .about-copy h2,
  .contact-copy h2 { font-size: 35px; line-height: 1.35; }
  .mission-detail p,
  .section-heading > p,
  .process-heading > p,
  .about-copy > p,
  .contact-copy > p { font-size: 14px; }
  .mission-visual { margin-top: 60px; }
  .mission-panel { min-height: 300px; padding: 30px; }
  .mission-panel h3 { font-size: 23px; }
  .mini-avatar-stack { top: 38px; right: 20px; }
  .mini-avatar-stack span { width: 50px; height: 50px; font-size: 14px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading .section-kicker { margin-bottom: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 315px; }
  .standards-grid { grid-template-columns: 1fr; }
  .standards-grid > div { min-height: 108px; padding-left: 58px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .standards-grid > div:last-child { border-bottom: 0; }
  .standards-grid span { top: 28px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-card-main { grid-column: auto; min-height: 500px; padding: 34px 28px; }
  .deliverable-card { min-height: 240px; padding: 28px; }
  .deliverable-card-main h3 { font-size: 30px; }
  .process-item { padding-left: 82px; }
  .process-number { left: 23px; }
  .case-filters { justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; }
  .case-filters button { flex: 0 0 auto; }
  .case-heading-aside { gap: 18px; }
  .case-heading-aside > p { font-size: 13px; line-height: 1.8; }
  .case-grid { grid-template-columns: 1fr; gap: 42px; }
  .work-card-tall .work-image,
  .work-image { height: 510px; }
  .work-card-digital { grid-column: auto; }
  .case-visual .privacy-badge { top: 18px; left: 18px; }
  .anonymous-visual { padding: 24px; }
  .identity-orbit { width: 390px; height: 390px; }
  .identity-core { margin: 24px auto 6px; transform: scale(0.78); }
  .identity-name strong { font-size: 23px; }
  .identity-colors { margin-top: 20px; }
  .profile-visual > .privacy-badge { top: 20px; left: 20px; }
  .profile-sheet { width: 91%; min-height: 84%; padding: 26px 23px; }
  .profile-sheet header { gap: 12px; }
  .profile-monogram { width: 48px; height: 48px; }
  .profile-sheet header strong { font-size: 16px; }
  .profile-sheet section { margin-top: 19px; }
  .profile-metrics { margin-top: 19px; }
  .profile-sheet blockquote { margin-top: 20px; }
  .asset-title { margin-top: 32px; }
  .asset-title strong { font-size: 24px; }
  .asset-grid { gap: 10px; }
  .asset-grid > div { min-height: 88px; padding: 13px; }
  .courseware-window { left: 4%; right: 4%; height: 78%; }
  .courseware-layout { grid-template-columns: 65px 1fr; }
  .courseware-layout main { padding: 31px 22px; }
  .courseware-layout main strong { font-size: 23px; }
  .case-privacy-note { align-items: flex-start; flex-direction: column; margin-top: 36px; padding: 18px; }
  .work-meta h3 { font-size: 17px; }
  .digital-preview { height: 330px; }
  .dash-main { width: 84%; height: 72%; margin-left: 35px; padding: 14px; grid-template-rows: 35px 55px 1fr; gap: 10px; }
  .dash-sidebar { left: 4%; width: 55px; height: 61%; gap: 17px; padding: 17px 0; }
  .dash-sidebar b { width: 29px; height: 29px; font-size: 12px; }
  .dash-sidebar i { width: 18px; height: 3px; }
  .capability-copy > p { font-size: 14px; }
  .product-stage { height: 380px; }
  .laptop { width: 610px; right: 50%; top: 20px; transform: translateX(58%) scale(0.58); transform-origin: center top; }
  .phone { left: 0; bottom: -20px; transform: rotate(-5deg) scale(0.68); transform-origin: bottom left; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list > div { min-height: 130px; border-left: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
  .capability-list > div:last-child { border-bottom: 0; }
  .about-grid { gap: 58px; }
  .about-brand { height: 400px; }
  .about-brand img { width: 85%; }
  .value-row { gap: 20px; flex-wrap: wrap; }
  .faq-intro h2 { font-size: 35px; }
  .faq-list summary { min-height: 78px; padding-block: 18px; font-size: 15px; }
  .faq-list details p { margin-right: 12px; font-size: 12px; }
  .contact-grid { gap: 55px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { gap: 55px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-bottom { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 16px; }
  .footer-bottom > div { flex-wrap: wrap; gap: 12px 18px; }
  .site-footer { padding-bottom: 78px; }
  .back-to-top { right: 16px; bottom: 88px; width: 42px; height: 42px; }
  .mobile-conversion-bar {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid #dce5f1;
    background: rgba(255,255,255,.96);
    box-shadow: 0 -10px 28px rgba(18,48,93,.12);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, opacity .25s ease;
  }
  .mobile-conversion-bar.is-hidden,
  .menu-open .mobile-conversion-bar { transform: translateY(110%); opacity: 0; pointer-events: none; }
  .mobile-conversion-bar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
  }
  .mobile-conversion-bar span,
  .mobile-conversion-bar strong,
  .mobile-conversion-bar small { display: block; }
  .mobile-conversion-bar strong { font-size: 13px; }
  .mobile-conversion-bar small { margin-top: 3px; color: var(--muted); font-size: 9px; }
  .mobile-conversion-bar b {
    flex: 0 0 auto;
    padding: 12px 15px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
  }
  .mobile-conversion-bar i { margin-left: 7px; font-style: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
