:root {
  --ink: #0c1b3a;
  --ink-soft: #304263;
  --muted: #687897;
  --line: rgba(76, 101, 153, 0.16);
  --surface: #ffffff;
  --surface-soft: #f6f8fd;
  --blue: #2864f0;
  --blue-dark: #194bcc;
  --blue-light: #6f9cff;
  --navy: #0d1c3a;
  --green: #0a9b70;
  --radius-card: 24px;
  --radius-panel: 32px;
  --shadow-soft: 0 18px 55px rgba(27, 49, 100, 0.1);
  --shadow-card: 0 10px 34px rgba(27, 49, 100, 0.08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(117, 158, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(139, 211, 255, 0.18), transparent 24rem),
    #f4f7ff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(40, 100, 240, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: 104px 0;
}

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 100;
  padding-inline: 24px;
  pointer-events: none;
}

.header-shell {
  position: relative;
  display: flex;
  width: min(100%, var(--container));
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(26, 44, 86, 0.11);
  backdrop-filter: blur(24px) saturate(1.6);
  pointer-events: auto;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(20, 38, 80, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: linear-gradient(135deg, #2864f0 0%, #6f9cff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 7px 16px rgba(40, 100, 240, 0.3);
}

.brand-mark span {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.site-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 2px;
}

.site-navigation a {
  padding: 10px 13px;
  border-radius: 12px;
  color: #465675;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-navigation a:hover {
  color: var(--ink);
  background: rgba(40, 100, 240, 0.07);
}

.menu-button {
  display: none;
  margin-left: auto;
  padding: 8px;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button-label {
  font-size: 13px;
  font-weight: 700;
}

.menu-lines {
  display: grid;
  width: 24px;
  gap: 5px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #3c78fa, #245ee8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 12px 24px rgba(40, 100, 240, 0.27);
}

.button-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 16px 30px rgba(40, 100, 240, 0.34);
}

.button-secondary {
  border-color: rgba(75, 99, 145, 0.17);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(27, 49, 100, 0.08);
}

.button-secondary:hover {
  background: #fff;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 13px;
  font-size: 13.5px;
}

.button-block {
  width: 100%;
}

.button-white {
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 35, 96, 0.18);
}

.hero {
  min-height: 900px;
  padding-top: 152px;
  padding-bottom: 64px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.ambient-one {
  top: 80px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(73, 125, 255, 0.24), transparent 70%);
}

.ambient-two {
  top: 0;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(89, 202, 255, 0.19), transparent 69%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 8px 13px 8px 10px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(40, 100, 240, 0.13);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 22px rgba(32, 60, 120, 0.07);
  font-size: 12.5px;
  font-weight: 760;
}

.eyebrow-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.eyebrow-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(40, 100, 240, 0.28);
  border-radius: 50%;
  content: "";
}

.hero h1,
.section-heading h2,
.connected-copy h2,
.registers-copy h2,
.access-copy h2,
.contact-shell h2 {
  margin: 0;
  font-weight: 830;
  letter-spacing: -0.048em;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.99;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 570px;
  margin: 26px 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.play-dot {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(40, 100, 240, 0.1);
  font-size: 9px;
  text-indent: 1px;
}

.trust-list {
  display: flex;
  margin: 26px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 620;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(10, 155, 112, 0.1);
  font-size: 11px;
}

.product-window {
  position: relative;
  z-index: 1;
  width: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 36px 90px rgba(24, 52, 115, 0.2), inset 0 1px 0 #fff;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center left;
  backdrop-filter: blur(26px) saturate(1.4);
}

.product-window::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  content: "";
  pointer-events: none;
}

.window-bar {
  display: grid;
  min-height: 48px;
  padding: 8px 13px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(70, 96, 145, 0.12);
  background: rgba(255, 255, 255, 0.57);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff665e;
}

.window-dots span:nth-child(2) {
  background: #f7be3d;
}

.window-dots span:nth-child(3) {
  background: #35c759;
}

.window-address {
  display: flex;
  padding: 5px 13px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(73, 98, 147, 0.1);
  border-radius: 999px;
  color: #70809f;
  background: rgba(245, 248, 255, 0.9);
  font-size: 9.5px;
  font-weight: 680;
}

.mini-mark {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--blue);
}

.window-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-size: 8px;
  font-weight: 800;
}

.app-nav {
  display: flex;
  height: 46px;
  padding: 7px 15px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(70, 96, 145, 0.1);
  background: rgba(255, 255, 255, 0.4);
}

.app-nav strong {
  margin-right: 8px;
  font-size: 11px;
  font-weight: 800;
}

.app-nav span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #71809d;
  font-size: 9px;
  font-weight: 680;
}

.app-nav .is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 3px 10px rgba(30, 51, 96, 0.1);
}

.app-content {
  padding: 19px;
}

.app-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
}

.app-heading div {
  display: grid;
  gap: 2px;
}

.app-heading small {
  color: #8795af;
  font-size: 8.5px;
}

.app-heading strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.app-heading button,
.register-preview-head button {
  padding: 8px 11px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
  font-weight: 760;
}

.metric-row {
  display: grid;
  margin-bottom: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric-row > div {
  display: grid;
  padding: 10px 11px;
  gap: 2px;
  border: 1px solid rgba(68, 96, 150, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
}

.metric-row span,
.metric-row small {
  color: #8593ae;
  font-size: 7.5px;
}

.metric-row strong {
  font-size: 13px;
}

.metric-row .positive {
  color: var(--green);
}

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

.pipeline-column {
  min-width: 0;
}

.pipeline-title {
  display: flex;
  margin-bottom: 7px;
  padding: 0 2px;
  align-items: center;
  justify-content: space-between;
  color: #52627f;
  font-size: 8.5px;
  font-weight: 760;
}

.pipeline-title small {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: #8190aa;
  background: rgba(81, 106, 156, 0.08);
  font-size: 7px;
}

.pipeline article {
  position: relative;
  display: grid;
  min-height: 88px;
  margin-bottom: 7px;
  padding: 11px;
  overflow: hidden;
  gap: 3px;
  border: 1px solid rgba(66, 92, 143, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 14px rgba(31, 54, 105, 0.06);
}

.pipeline article.card-featured {
  border-color: rgba(40, 100, 240, 0.22);
  box-shadow: 0 9px 20px rgba(40, 100, 240, 0.12);
}

.pipeline article > strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline article > small {
  color: #8694ae;
  font-size: 7.5px;
}

.pipeline article footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
}

.pipeline article footer b {
  color: var(--blue-dark);
  font-size: 8px;
}

.pipeline article footer i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #5c7cff, #7d9fff);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.card-accent {
  position: absolute;
  top: 0;
  right: 10px;
  left: 10px;
  height: 2px;
  border-radius: 0 0 2px 2px;
}

.blue {
  background: #4285ff;
}

.cyan {
  background: #31b6d8;
}

.violet {
  background: #875cf5;
}

.green {
  background: #25ad7c;
}

.orange {
  background: #f59c3d;
}

.pipeline article.pipeline-note {
  min-height: 65px;
  border-style: dashed;
  color: #5d6d8c;
  background: rgba(245, 248, 255, 0.7);
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 76px;
  padding: 22px 26px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 38px rgba(24, 50, 105, 0.08);
  backdrop-filter: blur(24px);
}

.proof-strip > div {
  display: flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.modules-section {
  padding-top: 116px;
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker-light {
  color: #83a8ff;
}

.section-heading h2,
.connected-copy h2,
.registers-copy h2,
.access-copy h2,
.contact-shell h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
}

.section-heading p {
  max-width: 670px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.module-filters {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 5px;
  overflow-x: auto;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  scrollbar-width: none;
}

.module-filters::-webkit-scrollbar {
  display: none;
}

.module-filters button {
  min-height: 40px;
  padding: 9px 15px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 11px;
  color: #647492;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.module-filters button:hover {
  color: var(--ink);
}

.module-filters button.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 13px rgba(26, 51, 105, 0.1);
}

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

.module-card {
  position: relative;
  display: flex;
  min-height: 320px;
  padding: 27px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(71, 98, 151, 0.13);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, #fff, #fbfcff);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.2s ease;
}

.module-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 120, 250, 0.09), transparent 68%);
  content: "";
  pointer-events: none;
}

.module-card:hover {
  z-index: 2;
  box-shadow: 0 22px 48px rgba(28, 54, 110, 0.13);
  transform: translateY(-5px);
}

.module-card[hidden] {
  display: none;
}

.module-card-featured {
  border-color: rgba(40, 100, 240, 0.25);
  background: linear-gradient(145deg, rgba(235, 242, 255, 0.95), #fff 62%);
}

.module-top {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}

.module-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(40, 100, 240, 0.14);
  border-radius: 15px;
  color: var(--blue);
  background: rgba(40, 100, 240, 0.08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.module-status,
.new-badge {
  padding: 6px 9px;
  border-radius: 999px;
  color: #74829b;
  background: #f2f5fa;
  font-size: 10px;
  font-weight: 770;
}

.new-badge {
  color: #176c52;
  background: rgba(20, 164, 118, 0.11);
}

.module-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.module-card ul {
  display: flex;
  margin: auto 0 0;
  padding: 24px 0 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.module-card li {
  padding: 5px 8px;
  border: 1px solid rgba(71, 98, 151, 0.11);
  border-radius: 7px;
  color: #5d6e8b;
  background: #f8faff;
  font-size: 9.5px;
  font-weight: 700;
}

.connected-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(59, 116, 248, 0.34), transparent 25rem),
    linear-gradient(145deg, #0c1a35, #142c5a 58%, #0e2045);
}

.connected-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}

.connected-copy > p {
  max-width: 510px;
  margin: 21px 0 32px;
  color: #b6c3de;
  font-size: 17px;
  line-height: 1.65;
}

.connected-points {
  display: grid;
  gap: 12px;
}

.connected-points > div {
  display: grid;
  padding: 15px;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.connected-points > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: #9bb8ff;
  background: rgba(93, 138, 255, 0.14);
  font-size: 10px;
  font-weight: 800;
}

.connected-points p {
  margin: 0;
  color: #9faccc;
  font-size: 12px;
  line-height: 1.5;
}

.connected-points strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.connection-map {
  position: relative;
  width: 590px;
  height: 520px;
  margin-left: auto;
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(130, 169, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 310px;
  height: 310px;
}

.orbit-two {
  width: 470px;
  height: 470px;
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 156px;
  height: 156px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(132, 170, 255, 0.34);
  border-radius: 50%;
  background: rgba(30, 61, 122, 0.8);
  box-shadow: 0 0 0 17px rgba(72, 119, 230, 0.05), 0 25px 70px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.map-center .brand-mark {
  margin-bottom: 10px;
}

.map-center strong {
  font-size: 16px;
}

.map-center small {
  margin-top: 2px;
  color: #8fa5cf;
  font-size: 9px;
}

.map-node {
  position: absolute;
  display: flex;
  min-width: 144px;
  padding: 11px 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.map-node i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: #a9c0ff;
  background: rgba(83, 131, 244, 0.16);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.map-node span {
  display: grid;
}

.map-node strong {
  font-size: 11px;
}

.map-node small {
  color: #8fa0c2;
  font-size: 8.5px;
}

.node-one {
  top: 22px;
  left: 222px;
}

.node-two {
  top: 115px;
  right: 0;
}

.node-three {
  right: 16px;
  bottom: 82px;
}

.node-four {
  bottom: 12px;
  left: 214px;
}

.node-five {
  bottom: 84px;
  left: 3px;
}

.node-six {
  top: 116px;
  left: -2px;
}

.registers-section {
  background: #fff;
}

.registers-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 82px;
}

.register-preview {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(70, 98, 151, 0.14);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, #f5f8ff, #eef3fd);
  box-shadow: 0 30px 70px rgba(27, 52, 107, 0.14);
}

.register-preview::before {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(72, 128, 255, 0.09);
  content: "";
}

.register-preview-head {
  position: relative;
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}

.register-preview-head h3 {
  margin: 3px 0 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.preview-label {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-tabs {
  display: flex;
  margin-bottom: 13px;
  gap: 4px;
  border-bottom: 1px solid rgba(74, 100, 152, 0.12);
}

.preview-tabs span {
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  color: #7b89a2;
  font-size: 9px;
  font-weight: 700;
}

.preview-tabs .is-active {
  border-bottom-color: var(--blue);
  color: var(--blue);
}

.register-table {
  overflow: hidden;
  border: 1px solid rgba(70, 97, 150, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.85);
}

.table-row {
  display: grid;
  min-width: 500px;
  min-height: 51px;
  padding: 8px 11px;
  grid-template-columns: 1.4fr 0.85fr 0.8fr 0.9fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(70, 97, 150, 0.08);
  color: #536480;
  font-size: 9px;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  min-height: 34px;
  color: #8794ac;
  background: rgba(244, 247, 253, 0.82);
  font-size: 7.5px;
  font-weight: 760;
  text-transform: uppercase;
}

.table-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.table-row b {
  color: #2d3c59;
  font-size: 9px;
}

.company-avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  font-size: 6.5px;
  font-style: normal;
  font-weight: 800;
}

.status {
  display: inline-flex;
  padding: 4px 6px;
  border-radius: 99px;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.status-green {
  color: #087454;
  background: rgba(15, 166, 116, 0.11);
}

.status-blue {
  color: #225cc5;
  background: rgba(40, 100, 240, 0.1);
}

.status-yellow {
  color: #9b6314;
  background: rgba(232, 161, 48, 0.13);
}

.preview-float-card {
  position: absolute;
  right: -33px;
  bottom: -25px;
  display: grid;
  width: 210px;
  padding: 15px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(27, 50, 100, 0.18);
  backdrop-filter: blur(16px);
}

.preview-float-card small {
  color: #8a97ae;
  font-size: 8px;
}

.preview-float-card strong {
  font-size: 15px;
}

.preview-float-card span {
  margin-top: 5px;
  color: #6f7d96;
  font-size: 7.5px;
}

.registers-copy > p {
  margin: 21px 0 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-checks {
  display: grid;
  margin-bottom: 27px;
  gap: 13px;
}

.feature-checks > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
}

.feature-checks > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: rgba(40, 100, 240, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.feature-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.feature-checks strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 770;
}

.text-link span {
  transition: transform 0.18s ease;
}

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

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

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

.workflow-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 29px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(70, 97, 150, 0.12);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.workflow-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(40, 100, 240, 0.055);
  content: "";
}

.workflow-number {
  margin-bottom: 54px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.workflow-card h3 {
  max-width: 300px;
  margin: 0 0 11px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.workflow-chain,
.school-metrics,
.people-row {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.workflow-chain {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.workflow-chain span {
  padding: 7px 8px;
  border: 1px solid rgba(40, 100, 240, 0.13);
  border-radius: 8px;
  color: #3d5585;
  background: rgba(40, 100, 240, 0.055);
  font-size: 8px;
  font-weight: 750;
}

.workflow-chain i {
  color: #9aa8be;
  font-size: 11px;
  font-style: normal;
}

.school-metrics {
  display: grid;
  padding-top: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.school-metrics span {
  display: grid;
  padding: 9px;
  gap: 1px;
  border-radius: 9px;
  color: #8490a5;
  background: #f4f7fc;
  font-size: 7px;
}

.school-metrics strong {
  color: var(--ink);
  font-size: 13px;
}

.people-row {
  display: flex;
  padding-top: 24px;
  align-items: center;
}

.people-row i,
.people-row span,
.mini-people i,
.mini-people small {
  display: grid;
  width: 36px;
  height: 36px;
  margin-right: -7px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #4e7cf2, #729dff);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.people-row i:nth-child(2),
.mini-people i:nth-child(2) {
  background: linear-gradient(135deg, #8b5de8, #a985f2);
}

.people-row i:nth-child(3),
.mini-people i:nth-child(3) {
  background: linear-gradient(135deg, #0d9e78, #43c59e);
}

.people-row i:nth-child(4) {
  background: linear-gradient(135deg, #e28b39, #f6b665);
}

.people-row span {
  color: #61718d;
  background: #edf2fb;
}

.access-section {
  padding-top: 40px;
  background: var(--surface-soft);
}

.access-shell {
  display: grid;
  padding: 62px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 8%, rgba(86, 136, 255, 0.34), transparent 25rem),
    linear-gradient(145deg, #11254d, #0b1831);
  box-shadow: 0 26px 70px rgba(15, 34, 76, 0.2);
}

.access-copy > p {
  margin: 20px 0 27px;
  color: #adbad3;
  font-size: 15px;
  line-height: 1.67;
}

.access-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access-levels span {
  display: inline-flex;
  padding: 7px 10px 7px 7px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  color: #bdc9df;
  background: rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 700;
}

.access-levels i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 6px;
  color: #abc2ff;
  background: rgba(84, 133, 248, 0.16);
  font-size: 7px;
  font-style: normal;
}

.org-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.org-top {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 750;
}

.org-top small {
  color: #91a3c5;
  font-size: 8.5px;
  font-weight: 600;
}

.org-root {
  display: flex;
  width: max-content;
  margin: 0 auto 27px;
  padding: 10px 15px 10px 10px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(115, 156, 255, 0.24);
  border-radius: 13px;
  background: rgba(70, 116, 224, 0.13);
}

.org-root > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #4b7cf0, #7aa2ff);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.org-root span {
  display: grid;
}

.org-root strong {
  font-size: 10px;
}

.org-root small {
  color: #91a4c9;
  font-size: 8px;
}

.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.org-branches::before {
  position: absolute;
  top: -16px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: rgba(146, 174, 231, 0.24);
  content: "";
}

.org-branches > div {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.org-branches > div::before {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 1px;
  height: 16px;
  background: rgba(146, 174, 231, 0.24);
  content: "";
}

.branch-title {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
  color: #dbe5fa;
  font-size: 8.5px;
  font-weight: 700;
}

.branch-title b {
  color: #8ea1c5;
  font-size: 7px;
}

.mini-people {
  display: flex;
  align-items: center;
}

.mini-people i,
.mini-people small {
  width: 27px;
  height: 27px;
  border-color: #1c3159;
  font-size: 6px;
}

.mini-people small {
  color: #9cafcf;
  background: #24395e;
}

.pricing-section {
  background: #fff;
}

.billing-toggle {
  display: flex;
  width: max-content;
  margin: 0 auto 38px;
  padding: 5px;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}

.billing-toggle button {
  min-height: 41px;
  padding: 9px 16px;
  border: 0;
  border-radius: 11px;
  color: #687793;
  background: transparent;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.billing-toggle button span {
  color: var(--green);
}

.billing-toggle button.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 14px rgba(28, 51, 100, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(70, 97, 150, 0.14);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.price-card-accent {
  border-color: rgba(40, 100, 240, 0.3);
  box-shadow: 0 22px 50px rgba(40, 100, 240, 0.15);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 6px 12px;
  border-radius: 99px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(40, 100, 240, 0.25);
  font-size: 9px;
  font-weight: 800;
  transform: translateX(-50%);
}

.price-name {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 800;
}

.price-card > p {
  min-height: 44px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.price-note {
  display: block;
  margin: 7px 0 23px;
  color: #93a0b6;
  font-size: 9px;
}

.price-card ul {
  display: grid;
  margin: 24px 0 0;
  padding: 23px 0 0;
  gap: 11px;
  border-top: 1px solid var(--line);
  color: #52617c;
  font-size: 12px;
  list-style: none;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.contact-section {
  padding-top: 0;
  background: #fff;
}

.contact-shell {
  display: grid;
  padding: 58px 62px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 0%, rgba(170, 205, 255, 0.36), transparent 20rem),
    linear-gradient(135deg, #2f70f4, #2158dc);
  box-shadow: 0 28px 70px rgba(36, 94, 225, 0.28);
}

.contact-shell h2 {
  max-width: 650px;
}

.contact-shell p {
  max-width: 590px;
  margin: 18px 0 0;
  color: #dbe7ff;
  font-size: 15px;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 17px;
}

.contact-phone {
  display: grid;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-phone span {
  color: #c5d7ff;
  font-size: 9px;
}

.contact-phone strong {
  font-size: 18px;
}

.site-footer {
  padding: 72px 0 28px;
  color: #97a6c2;
  background: #0b1730;
}

.footer-grid {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 70px;
}

.brand-light {
  color: #fff;
}

.footer-brand p {
  max-width: 340px;
  margin: 17px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

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

.footer-links a {
  width: max-content;
  max-width: 100%;
  font-size: 12px;
  transition: color 0.18s ease;
}

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

.footer-bottom {
  display: flex;
  padding-top: 23px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #657594;
  font-size: 10px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
    gap: 35px;
  }

  .product-window {
    width: 670px;
  }

  .connection-map {
    width: 520px;
    transform: scale(0.92);
    transform-origin: center;
  }

  .registers-grid {
    gap: 55px;
  }

  .preview-float-card {
    right: -12px;
  }
}

@media (max-width: 980px) {
  .site-navigation {
    gap: 0;
  }

  .site-navigation a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 730px;
    text-align: center;
    justify-self: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .product-window {
    width: min(100%, 760px);
    margin: 0 auto;
    transform: none;
  }

  .proof-strip {
    margin-top: 54px;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(n + 3) {
    padding-top: 16px;
  }

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

  .connected-grid,
  .registers-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .connected-copy {
    max-width: 720px;
  }

  .connection-map {
    width: min(590px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .register-preview {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .registers-copy {
    max-width: 700px;
  }

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

  .workflow-card {
    min-height: 280px;
  }

  .workflow-number {
    margin-bottom: 35px;
  }

  .access-shell {
    padding: 48px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 8px;
    padding-inline: 10px;
  }

  .header-shell {
    min-height: 58px;
    padding: 7px 8px 7px 13px;
    border-radius: 17px;
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .brand-mark span {
    width: 11px;
    height: 11px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-action {
    display: none;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 8px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(20, 39, 82, 0.16);
    backdrop-filter: blur(22px);
  }

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

  .site-navigation a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

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

  .product-window {
    overflow: hidden;
  }

  .window-address {
    font-size: 8px;
  }

  .app-nav {
    overflow: hidden;
  }

  .app-nav span:nth-last-child(-n + 3) {
    display: none;
  }

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

  .pipeline-column:last-child {
    display: none;
  }

  .proof-strip {
    padding: 18px 12px;
  }

  .proof-strip > div {
    padding: 0 12px;
  }

  .proof-strip strong {
    font-size: 26px;
  }

  .section-heading h2,
  .connected-copy h2,
  .registers-copy h2,
  .access-copy h2,
  .contact-shell h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .module-filters {
    width: 100%;
    justify-content: flex-start;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 295px;
  }

  .connected-section {
    padding-bottom: 50px;
  }

  .connection-map {
    height: 440px;
    transform: scale(0.8);
    transform-origin: center;
  }

  .register-preview {
    overflow: visible;
  }

  .register-table {
    overflow-x: auto;
  }

  .preview-float-card {
    right: 15px;
    bottom: -38px;
  }

  .registers-copy {
    margin-top: 20px;
  }

  .access-shell,
  .contact-shell {
    width: calc(100% - 20px);
    padding: 37px 25px;
    border-radius: 25px;
  }

  .org-branches {
    grid-template-columns: 1fr;
  }

  .org-branches::before,
  .org-branches > div::before {
    display: none;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-list {
    gap: 10px 14px;
  }

  .product-window {
    width: calc(100% + 8px);
    margin-left: -4px;
    border-radius: 18px;
  }

  .window-bar {
    grid-template-columns: auto 1fr auto;
    gap: 7px;
  }

  .window-address {
    justify-self: center;
  }

  .app-content {
    padding: 12px;
  }

  .metric-row > div:last-child {
    display: none;
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(-n + 2),
  .proof-strip > div:nth-child(n + 3) {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading p {
    font-size: 15px;
  }

  .connection-map {
    width: 570px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.62);
  }

  .register-preview {
    padding: 15px;
    border-radius: 22px;
  }

  .preview-float-card {
    right: 8px;
    width: 190px;
  }

  .workflow-card {
    padding: 24px;
  }

  .workflow-chain {
    gap: 3px;
  }

  .workflow-chain span {
    padding: 6px;
  }

  .org-card {
    padding: 15px;
  }

  .price-card {
    padding: 27px 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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