:root {
  --navy-950: #040c17;
  --navy-900: #071323;
  --navy-850: #0a192c;
  --navy-800: #0d2038;
  --blue: #3179f6;
  --blue-bright: #4388ff;
  --blue-pale: #eaf2ff;
  --cyan: #68d9ff;
  --ink: #102139;
  --slate: #617089;
  --line: #dfe6ef;
  --surface: #f4f7fb;
  --white: #ffffff;
  --success: #20a66a;
  --warning: #dc8a1a;
  --shadow: 0 24px 80px rgba(7, 19, 35, 0.13);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.page-progress {
  position: fixed;
  z-index: 101;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    min-height 240ms ease,
    background 240ms ease,
    backdrop-filter 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(4, 12, 23, 0.91);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 102px;
  height: 46px;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 8px;
}

.brand-mark img {
  width: 84px;
  height: auto;
}

.brand-context {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.2;
}

.brand-context strong {
  font-size: 13px;
  font-weight: 650;
}

.brand-context small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  justify-self: center;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-status {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header-status span,
.closing-pill span {
  width: 7px;
  height: 7px;
  background: #56d8a0;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(86, 216, 160, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.99) 0%, rgba(4, 12, 23, 0.93) 34%, rgba(4, 12, 23, 0.24) 72%, rgba(4, 12, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 12, 23, 0.95) 0%, transparent 34%);
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 22px;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue);
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 88px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--blue-bright);
}

.hero-summary {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(49, 121, 246, 0.27);
}

.button-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 18px 40px rgba(49, 121, 246, 0.36);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 620;
}

.text-link span {
  color: var(--blue-bright);
  font-size: 18px;
}

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

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 112px;
  color: var(--ink);
  background: var(--white);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -20px 70px rgba(0, 0, 0, 0.15);
}

.hero-proof > div {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 28px 30px;
}

.hero-proof > div + div {
  border-left: 1px solid var(--line);
}

.proof-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 12px;
}

.proof-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.hero-proof strong {
  font-size: 14px;
}

.hero-proof small {
  margin-top: 2px;
  color: var(--slate);
  font-size: 11px;
}

.section {
  padding: 126px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2,
.security-intro h2,
.architecture-copy h2,
.closing h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 90px;
  align-items: end;
}

.split-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
}

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

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

.outcome-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 38px 34px;
  background: var(--surface);
  border: 1px solid #ebeff5;
  border-radius: var(--radius);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.outcome-card:hover {
  border-color: rgba(49, 121, 246, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.outcome-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(49, 121, 246, 0.13), transparent 65%);
  content: "";
}

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #aeb9c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #e3eaf3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 33, 57, 0.06);
}

.line-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.outcome-card h3 {
  max-width: 245px;
  margin: 74px 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.outcome-card p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.workflow {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 121, 246, 0.08), transparent 32%),
    var(--surface);
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-track::before {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), #a4c2f8);
  content: "";
}

.workflow-track li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-step {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 27px;
  color: var(--white);
  background: var(--navy-900);
  border: 5px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #cbd8e8;
  font-size: 12px;
  font-weight: 700;
}

.workflow-track li:first-child .workflow-step {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.workflow-track small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-track h3 {
  margin: 7px 0 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.workflow-track p {
  max-width: 225px;
  margin: auto;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

.experience {
  overflow: hidden;
  background: var(--white);
}

.experience-switcher {
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 28px;
  box-shadow: 0 35px 100px rgba(7, 19, 35, 0.2);
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(620px, calc(100% - 80px));
  margin: 0 auto;
  padding: 24px 0 0;
}

.tab-list button {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tab-list button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.tab-list button[aria-selected="true"] {
  color: var(--white);
}

.tab-list button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.tab-list span {
  font-size: 15px;
  font-weight: 650;
}

.tab-list small {
  margin-top: 3px;
  color: inherit;
  font-size: 10px;
}

.mockup-stage {
  position: relative;
  min-height: 650px;
  padding: 34px 45px 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(49, 121, 246, 0.27), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.mockup-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.proposal-label {
  position: absolute;
  z-index: 2;
  top: 50px;
  right: 62px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(4, 12, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.portal-panel {
  position: relative;
  z-index: 1;
  animation: panel-in 330ms ease both;
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.browser-frame {
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px 13px 0 0;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.browser-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  background: #f8fafc;
  border-bottom: 1px solid #e3e8ef;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  background: #d9dee5;
  border-radius: 50%;
}

.browser-address {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: min(360px, 45%);
  height: 23px;
  color: #7b8797;
  background: #eef2f6;
  border-radius: 5px;
  font-size: 8px;
  transform: translateX(-50%);
}

.browser-address svg {
  width: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.portal-app {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 555px;
}

.portal-sidebar {
  display: flex;
  flex-direction: column;
  padding: 25px 20px 18px;
  color: var(--white);
  background: var(--navy-900);
}

.portal-sidebar > img {
  width: 78px;
  padding: 5px;
  background: var(--white);
  border-radius: 4px;
}

.portal-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 38px;
}

.portal-sidebar nav span {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  font-size: 9px;
}

.portal-sidebar nav span i {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.portal-sidebar nav span.active {
  color: var(--white);
  background: rgba(49, 121, 246, 0.25);
}

.portal-sidebar nav span.active i {
  background: var(--blue);
  border-color: var(--blue);
}

.avatar-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-row b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #9cc0ff;
  background: rgba(49, 121, 246, 0.24);
  border-radius: 50%;
  font-size: 7px;
}

.avatar-row small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 6px;
  line-height: 1.4;
}

.portal-main {
  padding: 28px 30px;
  background: #f3f6fa;
}

.portal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-topline small,
.employee-welcome > small {
  color: #8b98a8;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.portal-topline h3 {
  margin: 3px 0 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.portal-topline button,
.task button {
  padding: 9px 13px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 650;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat-row > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e7ebf1;
  border-radius: 9px;
}

.stat-row span {
  grid-row: span 2;
  margin-right: 12px;
  font-size: 26px;
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-row small {
  color: #7f8b9c;
  font-size: 7px;
}

.stat-row em {
  color: var(--success);
  font-size: 6px;
  font-style: normal;
}

.stat-row em.warning {
  color: var(--warning);
}

.table-card {
  margin-top: 15px;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e7ebf1;
  border-radius: 9px;
}

.table-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.table-title strong {
  font-size: 10px;
}

.table-title > span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 650;
}

.employee-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 0.7fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  color: #526176;
  border-top: 1px solid #edf0f4;
  font-size: 7px;
}

.employee-row.labels {
  min-height: 28px;
  color: #9aa4b2;
  background: #fafbfd;
  border: 0;
  font-size: 6px;
  text-transform: uppercase;
}

.person {
  display: flex;
  gap: 8px;
  align-items: center;
}

.person > b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #457bd8;
  background: #edf3fd;
  border-radius: 50%;
  font-size: 6px;
}

.person i {
  display: flex;
  flex-direction: column;
  color: #223349;
  font-style: normal;
  font-weight: 650;
}

.person small {
  color: #9aa4b2;
  font-size: 6px;
  font-weight: 400;
}

.mini-progress {
  display: inline-block;
  width: 38px;
  height: 3px;
  margin-right: 5px;
  overflow: hidden;
  vertical-align: middle;
  background: #e7ebf1;
  border-radius: 5px;
}

.mini-progress b {
  display: block;
  height: 100%;
  background: var(--blue);
}

.employee-row mark {
  padding: 4px 6px;
  color: #8c6618;
  background: #fff4dc;
  border-radius: 10px;
  font-size: 6px;
}

.employee-row mark.complete {
  color: #167b50;
  background: #e6f7ef;
}

.employee-row mark.invited {
  color: #3f6caf;
  background: #eaf2ff;
}

.employee-app {
  min-height: 555px;
  color: var(--ink);
  background: #f4f7fb;
}

.employee-app > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  background: var(--white);
  border-bottom: 1px solid #e5eaf1;
}

.employee-app > header img {
  width: 72px;
}

.employee-app > header div {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #64748a;
  font-size: 7px;
}

.employee-app > header b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #4775c1;
  background: #e9f0fc;
  border-radius: 50%;
  font-size: 7px;
}

.employee-app main {
  width: min(640px, 86%);
  margin: auto;
  padding: 35px 0;
}

.employee-welcome h3 {
  margin: 5px 0 5px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.employee-welcome p {
  margin: 0;
  color: #718096;
  font-size: 9px;
}

.employee-progress {
  margin-top: 25px;
  padding: 17px;
  background: var(--navy-900);
  border-radius: 9px;
}

.employee-progress > div {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 8px;
}

.employee-progress > div b {
  color: #8bb2fb;
}

.employee-progress > span {
  display: block;
  height: 4px;
  margin-top: 11px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 5px;
}

.employee-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue);
}

.task-list {
  margin-top: 14px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid #e5eaf1;
  border-radius: 9px;
}

.task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid #edf0f4;
}

.task:last-child {
  border-bottom: 0;
}

.task-check,
.task-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--blue);
  background: #eef4ff;
  border-radius: 8px;
  font-size: 9px;
}

.complete-task .task-check {
  color: var(--success);
  background: #e8f7f0;
}

.task-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.task p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.45;
}

.task strong {
  font-size: 9px;
}

.task small {
  color: #8995a5;
  font-size: 7px;
}

.task em {
  color: #8995a5;
  font-size: 7px;
  font-style: normal;
}

.security {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.security-backdrop {
  position: absolute;
  inset: 0 0 auto 42%;
  height: 750px;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent, black 25%, black 65%, transparent);
}

.security-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 121, 246, 0.22), transparent 27%),
    linear-gradient(180deg, transparent 50%, rgba(49, 121, 246, 0.05));
  content: "";
}

.security .shell {
  position: relative;
}

.security-intro {
  max-width: 770px;
}

.security-intro h2,
.closing h2 {
  color: var(--white);
}

.security-intro > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 19px;
  line-height: 1.7;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.security-feature {
  min-height: 300px;
  padding: 30px 27px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.security-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(104, 217, 255, 0.25);
  transform: translateY(-4px);
}

.security-feature > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--cyan);
  background: rgba(49, 121, 246, 0.13);
  border: 1px solid rgba(104, 217, 255, 0.15);
  border-radius: 14px;
}

.security-feature svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.security-feature h3 {
  margin: 52px 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.security-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.7;
}

.access-lifecycle {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
  align-items: center;
  margin-top: 86px;
  padding: 58px;
  background:
    linear-gradient(130deg, rgba(49, 121, 246, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
}

.lifecycle-copy h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lifecycle-copy > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.7;
}

.access-lifecycle ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-lifecycle ol::before {
  position: absolute;
  top: 17px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(104, 217, 255, 0.3);
  content: "";
}

.access-lifecycle li {
  position: relative;
  z-index: 1;
}

.access-lifecycle li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--cyan);
  background: var(--navy-850);
  border: 1px solid rgba(104, 217, 255, 0.4);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;
}

.access-lifecycle li div {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.access-lifecycle strong {
  font-size: 11px;
}

.access-lifecycle small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.4;
}

.security-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 25px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.security-note > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cyan);
  background: rgba(104, 217, 255, 0.09);
  border-radius: 10px;
}

.security-note svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.security-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.security-note strong {
  color: var(--white);
}

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

.scope-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.scope-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3e9f1;
  border-radius: 24px;
}

.scope-card header {
  padding: 33px 36px 27px;
  border-bottom: 1px solid #e8edf3;
}

.scope-card header span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scope-card h3 {
  margin: 8px 0 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.scope-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 17px 36px 25px;
  list-style: none;
}

.scope-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  color: #53637a;
  border-bottom: 1px solid #edf0f4;
  font-size: 14px;
}

.scope-card li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.scope-card li i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--success);
  background: #e9f7f0;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.scope-card.later {
  background: transparent;
  border-style: dashed;
}

.scope-card.later li i {
  color: var(--blue);
  background: var(--blue-pale);
}

.scope-card.later > p {
  margin: -6px 36px 28px;
  color: #8a96a6;
  font-size: 13px;
}

.boundary-note {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 21px 28px;
  background: #e8edf4;
  border-radius: 13px;
}

.boundary-note strong {
  flex: 0 0 auto;
  font-size: 14px;
}

.boundary-note p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.architecture {
  overflow: hidden;
  background: var(--white);
}

.architecture-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.architecture-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
}

.architecture-copy ul {
  margin: 37px 0 0;
  padding: 0;
  list-style: none;
}

.architecture-copy li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.architecture-copy li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 700;
}

.architecture-copy li div {
  display: flex;
  flex-direction: column;
}

.architecture-copy li strong {
  font-size: 15px;
}

.architecture-copy li small {
  margin-top: 2px;
  color: #7f8c9f;
  font-size: 13px;
  line-height: 1.5;
}

.architecture-visual {
  position: relative;
  min-height: 590px;
  background:
    radial-gradient(circle, rgba(49, 121, 246, 0.11), transparent 52%),
    var(--surface);
  border: 1px solid #e4eaf2;
  border-radius: 30px;
}

.architecture-visual::before,
.architecture-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed #b9cae2;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.architecture-visual::before {
  width: 330px;
  height: 330px;
}

.architecture-visual::after {
  width: 470px;
  height: 470px;
  opacity: 0.6;
}

.arch-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 174px;
  color: var(--white);
  background: var(--navy-900);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(7, 19, 35, 0.24);
  transform: translate(-50%, -50%);
}

.arch-core img {
  width: 68px;
  margin-bottom: 12px;
  padding: 5px;
  background: var(--white);
  border-radius: 5px;
}

.arch-core strong {
  font-size: 12px;
}

.arch-core small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
}

.arch-core i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.arch-core i:nth-of-type(1) {
  top: -4px;
}

.arch-core i:nth-of-type(2) {
  right: -4px;
}

.arch-core i:nth-of-type(3) {
  bottom: -4px;
}

.arch-core i:nth-of-type(4) {
  left: -4px;
}

.arch-node {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 170px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #dfe6ef;
  border-radius: 13px;
  box-shadow: 0 13px 30px rgba(16, 33, 57, 0.09);
}

.arch-node > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 9px;
}

.arch-node svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.arch-node p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.arch-node strong {
  font-size: 12px;
}

.arch-node small {
  color: #8c98a8;
  font-size: 9px;
}

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

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

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

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

.closing {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  color: var(--white);
  text-align: center;
  background: var(--navy-950);
}

.closing::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 68%);
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(49, 121, 246, 0.2), transparent 65%);
  transform: translate(-50%, -50%);
}

.closing .shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing img {
  width: 112px;
  margin-bottom: 38px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 8px;
}

.closing h2 {
  max-width: 890px;
}

.closing .shell > p:not(.eyebrow) {
  max-width: 640px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.7;
}

.closing-pill {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 42px;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  color: rgba(255, 255, 255, 0.45);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  font-size: 10px;
}

footer .shell > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

footer img {
  width: 68px;
  padding: 4px 5px;
  background: var(--white);
  border-radius: 4px;
}

footer p {
  margin: 0;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.outcomes-grid .reveal:nth-child(2),
.security-grid .reveal:nth-child(2),
.workflow-track .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.outcomes-grid .reveal:nth-child(3),
.security-grid .reveal:nth-child(3),
.workflow-track .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.security-grid .reveal:nth-child(4),
.workflow-track .reveal:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 1080px) {
  .header-status {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-self: end;
  }

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

  .security-feature {
    min-height: 260px;
  }

  .access-lifecycle {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .architecture-layout {
    gap: 45px;
  }

  .architecture-visual {
    min-height: 520px;
  }

  .arch-node {
    min-width: 145px;
  }

  .node-sign {
    right: 10px;
  }

  .node-email {
    left: 10px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .section {
    padding: 92px 0;
  }

  .site-header {
    min-height: 70px;
    padding: 0 16px;
  }

  .brand-context {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 15px 24px 28px;
    background: rgba(4, 12, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .hero {
    min-height: 900px;
  }

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

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(4, 12, 23, 0.98), rgba(4, 12, 23, 0.6)),
      linear-gradient(0deg, rgba(4, 12, 23, 0.98) 0%, transparent 55%);
  }

  .hero-content {
    align-self: flex-start;
    padding-top: 170px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 10vw, 70px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .hero-proof > div {
    min-height: 74px;
    padding: 14px 22px;
  }

  .hero-proof > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .outcomes-grid,
  .scope-columns,
  .architecture-layout {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 300px;
  }

  .workflow-track {
    grid-template-columns: 1fr 1fr;
    gap: 44px 20px;
  }

  .workflow-track::before {
    display: none;
  }

  .mockup-stage {
    min-height: 500px;
    padding: 28px 20px 0;
  }

  .portal-app {
    grid-template-columns: 105px 1fr;
    min-height: 450px;
  }

  .portal-sidebar {
    padding: 18px 12px;
  }

  .portal-sidebar > img {
    width: 62px;
  }

  .portal-sidebar nav {
    margin-top: 25px;
  }

  .portal-sidebar nav span {
    gap: 6px;
    padding: 8px 6px;
    font-size: 7px;
  }

  .portal-main {
    padding: 20px;
  }

  .stat-row > div:nth-child(3) {
    display: none;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .employee-row {
    grid-template-columns: 1.3fr 0.8fr 0.7fr;
  }

  .employee-row > span:nth-child(2) {
    display: none;
  }

  .employee-app {
    min-height: 470px;
  }

  .security-backdrop {
    left: 25%;
  }

  .architecture-layout {
    gap: 65px;
  }

  .architecture-visual {
    min-height: 590px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 87px;
    height: 40px;
  }

  .hero {
    min-height: 940px;
  }

  .hero-media {
    left: -55%;
  }

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

  .hero-content {
    padding-top: 145px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading h2,
  .security-intro h2,
  .architecture-copy h2,
  .closing h2 {
    font-size: 36px;
  }

  .outcomes-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-track li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    text-align: left;
  }

  .workflow-step {
    margin: 0;
  }

  .workflow-track p {
    margin: 0;
  }

  .tab-list {
    width: calc(100% - 32px);
  }

  .tab-list button {
    padding: 17px 10px;
  }

  .tab-list span {
    font-size: 12px;
  }

  .mockup-stage {
    min-height: 610px;
    padding: 25px 10px 0;
  }

  .proposal-label {
    top: 35px;
    right: 18px;
  }

  .browser-frame {
    min-width: 710px;
    transform: scale(0.53);
    transform-origin: top left;
  }

  .portal-panel {
    width: 376px;
    height: 560px;
    overflow: hidden;
  }

  .employee-browser {
    transform: scale(0.53);
  }

  .access-lifecycle {
    padding: 34px 24px;
  }

  .access-lifecycle ol {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .access-lifecycle ol::before {
    top: 8%;
    bottom: 8%;
    left: 17px;
    width: 1px;
    height: auto;
  }

  .access-lifecycle li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    align-items: center;
  }

  .access-lifecycle li > span {
    margin: 0;
  }

  .access-lifecycle li div {
    text-align: left;
  }

  .scope-card header,
  .scope-card ul {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .scope-card li:nth-last-child(-n + 2) {
    border-bottom: 1px solid #edf0f4;
  }

  .scope-card li:last-child {
    border-bottom: 0;
  }

  .boundary-note {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .architecture-visual {
    min-height: 650px;
  }

  .architecture-visual::after {
    width: 330px;
    height: 330px;
  }

  .architecture-visual::before {
    width: 240px;
    height: 240px;
  }

  .arch-core {
    width: 145px;
    height: 145px;
  }

  .arch-node {
    min-width: 145px;
  }

  .node-auth {
    top: 40px;
  }

  .node-sign {
    top: 190px;
    right: 15px;
    transform: none;
  }

  .node-store {
    bottom: 40px;
  }

  .node-email {
    top: auto;
    bottom: 190px;
    left: 15px;
    transform: none;
  }

  .closing {
    padding: 110px 0;
  }

  footer .shell {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 30px 0;
  }
}

@media print {
  .site-header,
  .page-progress,
  .hero-actions,
  .menu-toggle {
    display: none !important;
  }

  .hero {
    min-height: 720px;
  }

  .section {
    padding: 70px 0;
    break-inside: avoid;
  }

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

  .security,
  .closing {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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