:root {
  --ink: #17142d;
  --paper: #f5f0e5;
  --cream: #fffdf8;
  --white: #ffffff;
  --italia: #0066cc;
  --italia-mid: #207ad5;
  --italia-soft: #bfdfff;
  --italia-pale: #f2f7fc;
  --institutional: #003366;
  --institutional-mid: #004d99;
  --institutional-deep: #00264d;
  --orange: #ff5838;
  --yellow: #ffd84a;
  --cyan: #9ae5f4;
  --lime: #c6f275;
  --green: #168758;
  --muted: #625e6d;
  --line: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: var(--cream);
  border-bottom: 2px solid transparent;
  transition: min-height 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  color: var(--ink);
  background: rgba(245, 240, 229, 0.96);
  border-color: var(--ink);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  width: 51px;
  height: 48px;
  display: flex;
  align-items: center;
  color: var(--institutional);
  background: var(--cream);
  border: var(--line);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--orange);
  font-family: var(--display);
  transform: rotate(-3deg);
}

.brand-letter {
  flex: 1;
  padding-left: 7px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -2px;
}

.brand-mark > i {
  width: 2px;
  height: 30px;
  display: block;
  background: var(--ink);
}

.brand-mark > b {
  width: 24px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

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

.brand-name strong {
  font: 900 20px/1 var(--display);
  letter-spacing: -1px;
}

.brand-name strong span {
  color: var(--orange);
}

.site-header:not(.is-scrolled) .brand-name strong span {
  color: var(--yellow);
}

.brand-name small {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 13px;
  font-weight: 850;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header.is-scrolled .main-nav > a:not(.nav-cta)::after {
  background: var(--orange);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.parentelab-link {
  white-space: nowrap;
}

.nav-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled .nav-cta {
  color: var(--cream);
  background: var(--italia);
}

.nav-cta:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  font: 850 11px/1 var(--body);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-toggle > i,
.menu-toggle > i::before {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle > i {
  position: relative;
  transform: translateY(-3px);
}

.menu-toggle > i::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
}

.menu-toggle[aria-expanded="true"] > i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > i::before {
  top: 0;
  transform: rotate(90deg);
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  display: grid;
  grid-template-columns: minmax(450px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 5vw, 84px);
  padding: 130px clamp(24px, 5vw, 84px) 86px;
  color: var(--cream);
  background: var(--institutional);
  overflow: hidden;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(148, 196, 245, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 196, 245, 0.25) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000, transparent 92%);
}

.hero-shape {
  position: absolute;
  border: 2px solid var(--italia-soft);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.hero-shape-one {
  top: -260px;
  right: -170px;
  width: 690px;
  height: 690px;
}

.hero-shape-two {
  right: 23%;
  bottom: -330px;
  width: 600px;
  height: 600px;
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 8px 12px;
  color: var(--institutional);
  background: var(--cyan);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.eyebrow > i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--orange);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 900 clamp(55px, 5.8vw, 98px)/0.88 var(--display);
  letter-spacing: clamp(-5px, -0.38vw, -2px);
  text-transform: uppercase;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--ink);
  font-style: normal;
  text-shadow: none;
  transform: rotate(-1deg);
}

.hero h1 em::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.02em -0.12em -0.01em;
  background: var(--yellow);
  border: 3px solid var(--ink);
  clip-path: polygon(1% 8%, 100% 0, 98% 91%, 0 100%);
}

.hero-intro {
  max-width: 670px;
  margin: 35px 0 0;
  color: #e3effc;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 620;
  line-height: 1.52;
  letter-spacing: -0.25px;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 55px;
  padding: 14px 21px;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(4px, 4px);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 11px;
  padding: 8px 0;
  color: var(--cream);
  font-size: 14px;
  font-weight: 850;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--italia-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 29px 0 0;
  padding: 0;
  color: var(--italia-soft);
  list-style: none;
  font-size: 12px;
  font-weight: 750;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof li span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 950;
}

.hero-product {
  width: 100%;
  max-width: 920px;
  justify-self: end;
  filter: drop-shadow(19px 20px 0 rgba(23, 20, 45, 0.55));
}

.app-window {
  overflow: hidden;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 12px;
  transform: rotate(0.7deg);
}

.window-bar {
  min-height: 45px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px;
  color: var(--ink);
  background: var(--paper);
  border-bottom: var(--line);
  font-size: 9px;
  font-weight: 800;
}

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

.window-dots i {
  width: 9px;
  height: 9px;
  display: block;
  background: var(--italia-soft);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.window-dots i:first-child {
  background: var(--orange);
}

.window-dots i:nth-child(2) {
  background: var(--yellow);
}

.window-dots i:last-child {
  background: var(--lime);
}

.window-title {
  letter-spacing: 0.2px;
}

.secure-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--green);
}

.secure-label i {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--green);
  border-radius: 50%;
}

.app-body {
  min-height: 505px;
  display: grid;
  grid-template-columns: 128px minmax(260px, 1fr) minmax(190px, 0.72fr);
  color: var(--ink);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 15px 12px 12px;
  color: var(--cream);
  background: var(--institutional-deep);
  border-right: var(--line);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 20px;
  font-size: 10px;
  font-weight: 900;
}

.mini-brand b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--institutional);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  box-shadow: 2px 2px 0 var(--orange);
  font: 900 13px/1 var(--display);
}

.app-sidebar > small {
  margin: 6px 6px 8px;
  color: var(--italia-soft);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  padding: 8px 7px;
  border-radius: 5px;
  color: #dcecff;
  font-size: 9px;
  font-weight: 700;
}

.side-item i {
  width: 13px;
  color: var(--italia-soft);
  font-style: normal;
  text-align: center;
}

.side-item.active {
  color: var(--institutional-deep);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--orange);
}

.side-item.active i {
  color: var(--orange);
}

.school-card {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(191, 223, 255, 0.25);
  border-radius: 6px;
}

.school-card > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--italia);
  border-radius: 50%;
  font: 800 8px/1 var(--body);
}

.school-card > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.school-card b,
.school-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.school-card b {
  font-size: 7px;
}

.school-card small {
  margin-top: 2px;
  color: var(--italia-soft);
  font-size: 6px;
}

.chat-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--italia-pale);
  border-right: var(--line);
}

.chat-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 60px;
  padding: 11px 16px;
  background: var(--cream);
  border-bottom: 1px solid #bfd0e1;
}

.chat-heading > div {
  display: flex;
  flex-direction: column;
}

.chat-heading small {
  color: var(--italia);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.chat-heading strong {
  margin-top: 3px;
  font-size: 11px;
}

.chat-heading > span {
  padding: 4px 7px;
  color: var(--green);
  background: #e3f5eb;
  border: 1px solid #b7dec8;
  border-radius: 10px;
  font-size: 6px;
  font-weight: 800;
}

.chat-stream {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 27px 16px 16px;
}

.message {
  display: flex;
  gap: 8px;
  max-width: 91%;
  font-size: 9px;
  line-height: 1.45;
}

.message p {
  margin: 0;
  padding: 10px 11px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 3px 10px 10px 10px;
  box-shadow: 2px 2px 0 var(--italia-soft);
}

.avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--italia);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--orange);
  font: 900 11px/1 var(--display);
}

.message-user {
  align-self: flex-end;
  margin: 17px 0;
}

.message-user p {
  color: var(--cream);
  background: var(--institutional);
  border-radius: 10px 3px 10px 10px;
  box-shadow: 2px 2px 0 var(--orange);
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 0 34px;
}

.option-row span {
  padding: 6px 8px;
  color: var(--institutional);
  background: var(--cream);
  border: 1px solid var(--italia);
  border-radius: 10px;
  font-size: 7px;
  font-weight: 800;
}

.option-row .selected {
  color: var(--cream);
  background: var(--italia);
  border-color: var(--ink);
}

.chat-input {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 14px 14px;
  padding: 7px 7px 7px 11px;
  color: #7a8493;
  background: var(--cream);
  border: 1.5px solid #94acc4;
  border-radius: 8px;
  font-size: 8px;
}

.chat-input b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--italia);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
}

.document-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: #e4e9ef;
}

.doc-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  color: #516273;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.9px;
}

.doc-panel-head i {
  color: var(--ink);
  font-style: normal;
  letter-spacing: 1px;
}

.document-sheet {
  min-height: 335px;
  padding: 24px 18px 18px;
  background: var(--white);
  border: 1.5px solid #a6b0ba;
  box-shadow: 4px 5px 0 rgba(23, 20, 45, 0.14);
}

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

.doc-school i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--italia);
  border-radius: 50%;
  font: 800 7px/1 var(--body);
}

.doc-school span {
  width: 55%;
  height: 4px;
  background: var(--institutional);
}

.document-sheet > small {
  display: block;
  margin-top: 11px;
  color: var(--italia);
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.document-sheet h3 {
  margin: 20px 0 4px;
  color: var(--institutional);
  font: 900 15px/1 var(--display);
  text-align: center;
}

.document-sheet > b {
  display: block;
  min-height: 29px;
  margin-bottom: 17px;
  font-size: 6px;
  line-height: 1.35;
  text-align: center;
}

.doc-line {
  width: 90%;
  height: 4px;
  display: block;
  margin: 0 0 7px;
  background: #dae1e8;
}

.doc-line.line-long {
  width: 100%;
}

.doc-line.line-short {
  width: 62%;
}

.document-sheet > strong {
  display: block;
  margin: 20px 0 10px;
  color: var(--institutional);
  font-size: 7px;
}

.doc-sign {
  display: block;
  margin-top: 29px;
  font-family: Georgia, serif;
  font-size: 7px;
  font-style: italic;
  text-align: right;
}

.ready-card {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--lime);
}

.ready-card > i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.ready-card > span {
  display: flex;
  flex-direction: column;
}

.ready-card b {
  font-size: 7px;
}

.ready-card small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 6px;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  display: inline-block;
  padding: 8px 11px;
  color: var(--ink);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sticker-top {
  top: -30px;
  right: 18px;
  background: var(--cyan);
  transform: rotate(2deg);
}

.sticker-bottom {
  right: -17px;
  bottom: -25px;
  background: var(--lime);
  transform: rotate(-2deg);
}

.ticker {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--ink);
  background: var(--yellow);
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 29px;
  padding: 14px 0;
  font: 900 14px/1 var(--display);
  letter-spacing: -0.3px;
  text-transform: uppercase;
  animation: ticker 25s linear infinite;
}

.ticker-track i {
  color: var(--orange);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(86px, 10vw, 150px) clamp(24px, 6vw, 100px);
}

.section-heading {
  max-width: 1440px;
  margin: 0 auto clamp(48px, 7vw, 92px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(42px, 8vw, 140px);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--institutional);
}

.section-tag span {
  width: 34px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--italia);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--orange);
  font-size: 9px;
}

.section-tag-light {
  color: var(--italia-soft);
}

.section-tag-light span {
  color: var(--ink);
  background: var(--yellow);
}

.display-title {
  margin: 0;
  font: 900 clamp(50px, 6.6vw, 104px)/0.89 var(--display);
  letter-spacing: clamp(-6px, -0.45vw, -2px);
  text-transform: uppercase;
}

.display-title em {
  color: var(--italia);
  font-style: normal;
}

.section-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 620;
  line-height: 1.55;
}

.section-lead > p:first-child {
  margin: 0;
}

.hand-note {
  display: flex;
  gap: 10px;
  margin: 26px 0 0;
  color: var(--institutional);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
}

.hand-note span {
  color: var(--orange);
  font: 900 24px/1 var(--body);
}

.problem {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 216, 74, 0.28) 0 10%, transparent 10.3%),
    var(--paper);
}

.benefit-grid {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 20px;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 43px);
  background: var(--cream);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
}

.benefit-main {
  background: var(--orange);
}

.benefit-blue {
  color: var(--cream);
  background: var(--italia);
}

.benefit-yellow {
  background: var(--yellow);
}

.benefit-index {
  position: absolute;
  top: 18px;
  right: 20px;
  font: 900 12px/1 var(--display);
}

.benefit-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--ink);
  background: var(--cream);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
}

.benefit-blue .benefit-icon {
  background: var(--yellow);
}

.benefit-yellow .benefit-icon {
  background: var(--cyan);
}

.benefit-icon svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  max-width: 520px;
  margin: 35px 0 14px;
  font: 900 clamp(25px, 2.3vw, 38px)/1.02 var(--display);
  letter-spacing: -1.6px;
}

.benefit-card p {
  max-width: 480px;
  margin: 0;
  font-size: 15px;
  font-weight: 620;
}

.flows {
  color: var(--cream);
  background: var(--institutional-deep);
}

.flows-intro {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.6fr;
  align-items: end;
  gap: 40px;
  margin: 0 auto clamp(48px, 7vw, 90px);
}

.flows-intro .section-tag {
  align-self: start;
}

.flows-intro h2 {
  margin: 0;
  font: 900 clamp(58px, 7.2vw, 112px)/0.86 var(--display);
  letter-spacing: clamp(-7px, -0.5vw, -3px);
  text-transform: uppercase;
}

.flows-intro h2 em {
  color: var(--yellow);
  font-style: normal;
}

.flows-intro > p:last-child {
  margin: 0;
  color: var(--italia-soft);
  font-size: 18px;
  font-weight: 620;
}

.flow-list {
  max-width: 1440px;
  display: grid;
  gap: 24px;
  margin: 0 auto;
}

.flow-card {
  color: var(--ink);
  background: var(--cream);
  border: var(--line);
  box-shadow: 10px 10px 0 #000f20;
}

.flow-meta {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 22px;
  border-bottom: var(--line);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.flow-meta span {
  width: 32px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--institutional);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--orange);
  font: 900 9px/1 var(--display);
}

.flow-content {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 6vw, 100px);
  padding: clamp(32px, 5vw, 72px);
}

.flow-content > div:first-child {
  position: relative;
  z-index: 2;
}

.flow-card h3 {
  margin: 0;
  font: 900 clamp(40px, 4.8vw, 75px)/0.9 var(--display);
  letter-spacing: clamp(-4px, -0.3vw, -2px);
  text-transform: uppercase;
}

.flow-card p {
  max-width: 590px;
  margin: 28px 0 22px;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 610;
}

.flow-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 760;
}

.flow-card li {
  position: relative;
  padding-left: 25px;
}

.flow-card li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
}

.flow-visual {
  position: relative;
  min-height: 340px;
  align-self: center;
}

.project-stack {
  min-height: 390px;
  perspective: 900px;
}

.mini-doc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(310px, 52%);
  height: 350px;
  padding: 30px 27px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 9px 0 rgba(23, 20, 45, 0.3);
}

.mini-doc > span {
  display: inline-grid;
  place-items: center;
  width: 33px;
  height: 27px;
  color: var(--cream);
  background: var(--italia);
  border: 1.5px solid var(--ink);
  font: 900 9px/1 var(--display);
}

.mini-doc > b {
  display: block;
  margin: 42px 0 30px;
  color: var(--institutional);
  font: 900 22px/1 var(--display);
  text-transform: uppercase;
}

.mini-doc > i {
  width: 100%;
  height: 7px;
  display: block;
  margin-top: 13px;
  background: var(--italia-soft);
}

.mini-doc > i:last-of-type {
  width: 62%;
}

.doc-one {
  z-index: 1;
  transform: translate(-98%, -50%) rotate(-7deg);
}

.doc-two {
  z-index: 2;
  transform: translate(-50%, -50%) rotate(1deg);
}

.doc-three {
  z-index: 3;
  transform: translate(-2%, -50%) rotate(7deg);
}

.doc-three em {
  position: absolute;
  right: 23px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 21px;
  font-style: normal;
}

.flow-project .flow-content {
  background:
    linear-gradient(rgba(0, 102, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 204, 0.08) 1px, transparent 1px),
    var(--italia-pale);
  background-size: 38px 38px;
}

.flow-appointments .flow-meta {
  background: var(--yellow);
}

.flow-appointments .flow-content {
  background: var(--paper);
}

.roster-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 3vw, 44px);
}

.sheet-card {
  width: min(330px, 51%);
  min-height: 290px;
  padding: 28px;
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.sheet-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.sheet-top span {
  align-self: flex-start;
  padding: 6px 8px;
  color: var(--cream);
  background: var(--green);
  border: 1px solid var(--ink);
  font: 900 9px/1 var(--display);
}

.sheet-top b {
  font: 900 18px/1 var(--display);
}

.sheet-card > i {
  height: 25px;
  display: block;
  margin-top: 4px;
  background:
    linear-gradient(90deg, var(--italia-soft) 0 30%, transparent 30% 32%, #e7edf3 32% 67%, transparent 67% 69%, #e7edf3 69%);
  border-bottom: 1px solid #c2cbd4;
}

.flow-arrow {
  font: 900 clamp(30px, 4vw, 60px)/1 var(--display);
}

.zip-card {
  width: min(230px, 37%);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--cream);
  background: var(--institutional);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.zip-card > i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  font: 900 31px/1 var(--body);
}

.zip-card b {
  margin-top: 19px;
  font: 900 18px/1 var(--display);
}

.zip-card small {
  margin-top: 6px;
  color: var(--italia-soft);
  font-size: 10px;
  font-weight: 750;
}

.flow-templates .flow-meta {
  background: var(--cyan);
}

.flow-templates .flow-content {
  background: #dcecff;
}

.template-visual {
  display: grid;
  place-items: center;
}

.template-file {
  position: relative;
  width: min(480px, 82%);
  min-height: 315px;
  padding: 38px 40px;
  background: var(--white);
  border: var(--line);
  box-shadow: 10px 10px 0 var(--institutional);
  transform: rotate(-2deg);
}

.template-file > span {
  display: inline-block;
  padding: 7px 9px;
  color: var(--cream);
  background: var(--italia);
  border: 1.5px solid var(--ink);
  font-size: 9px;
  font-weight: 900;
}

.template-file > b {
  display: block;
  margin: 37px 0 26px;
  color: var(--institutional);
  font: 900 clamp(19px, 2vw, 29px)/1 var(--display);
}

.template-file > i {
  display: block;
  margin-top: 13px;
  padding: 8px 10px;
  color: var(--institutional);
  background: var(--italia-pale);
  border-left: 4px solid var(--orange);
  font: 700 12px/1.2 ui-monospace, monospace;
}

.ai-scan {
  position: absolute;
  right: 2%;
  bottom: 4%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 3px 9px;
  min-width: 155px;
  padding: 12px;
  color: var(--cream);
  background: var(--institutional-deep);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--orange);
  transform: rotate(4deg);
}

.ai-scan > span {
  width: 36px;
  height: 36px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  font: 900 12px/1 var(--display);
}

.ai-scan > i {
  height: 4px;
  align-self: end;
  background: var(--lime);
  box-shadow: -12px 0 0 var(--lime), -24px 0 0 var(--lime);
}

.ai-scan > b {
  font-size: 9px;
}

.process {
  position: relative;
  background:
    radial-gradient(circle at 90% 22%, rgba(154, 229, 244, 0.32) 0 11%, transparent 11.3%),
    var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  align-items: end;
  gap: clamp(40px, 8vw, 135px);
}

.process-steps {
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0;
  border: var(--line);
  box-shadow: var(--shadow);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(23px, 2.5vw, 38px);
  background: var(--cream);
}

.process-steps li + li {
  border-left: var(--line);
}

.process-steps li:nth-child(2) {
  background: var(--italia-soft);
}

.process-steps li:nth-child(3) {
  background: var(--yellow);
}

.process-steps li:nth-child(4) {
  color: var(--cream);
  background: var(--italia);
}

.process-steps li > span {
  position: absolute;
  top: 21px;
  right: 21px;
  font: 900 11px/1 var(--display);
}

.process-steps li > i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--ink);
  background: var(--cream);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font: 900 22px/1 var(--display);
  font-style: normal;
  transform: rotate(-4deg);
}

.process-steps h3 {
  margin: 34px 0 10px;
  font: 900 clamp(22px, 2vw, 31px)/1 var(--display);
  letter-spacing: -1.2px;
}

.process-steps p {
  margin: 0;
  font-size: 14px;
  font-weight: 620;
}

.human-note {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  align-items: center;
  gap: clamp(25px, 4vw, 64px);
  margin: clamp(55px, 7vw, 92px) auto 0;
  padding: 31px clamp(28px, 4vw, 57px);
  color: var(--cream);
  background: var(--institutional);
  border: var(--line);
  box-shadow: 9px 9px 0 var(--orange);
  transform: rotate(-0.5deg);
}

.human-stamp {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px double var(--ink);
  border-radius: 50%;
  font: 900 12px/1.05 var(--display);
  text-align: center;
  transform: rotate(-8deg);
}

.human-note .section-tag {
  margin-bottom: 10px;
}

.human-note h3 {
  margin: 0;
  font: 900 clamp(27px, 3.2vw, 47px)/0.95 var(--display);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.human-note > p {
  margin: 0;
  color: var(--italia-soft);
  font-size: 16px;
  font-weight: 620;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(60px, 9vw, 145px);
  color: var(--cream);
  background: var(--institutional);
}

.security-copy h2 {
  margin: 0;
  font: 900 clamp(52px, 6.3vw, 98px)/0.88 var(--display);
  letter-spacing: clamp(-6px, -0.45vw, -3px);
  text-transform: uppercase;
}

.security-copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.security-copy > p:not(.section-tag) {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--italia-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 610;
}

.security-points {
  display: grid;
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid rgba(191, 223, 255, 0.28);
}

.security-points article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(191, 223, 255, 0.28);
}

.security-points article > span {
  width: 38px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--orange);
  font: 900 9px/1 var(--display);
}

.security-points h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.security-points p {
  margin: 0;
  color: var(--italia-soft);
  font-size: 14px;
}

.security-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--italia-pale);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--ink);
}

.security-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 102, 204, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 204, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
}

.security-sticker {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 21px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.school-space {
  position: relative;
  z-index: 2;
  width: min(520px, 77%);
  padding: 22px;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--institutional);
}

.space-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #bdc7d2;
  color: var(--institutional);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.space-head i {
  color: var(--green);
  font-style: normal;
}

.space-school {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 23px 0 17px;
}

.space-school > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--italia);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--orange);
  font: 900 13px/1 var(--display);
}

.space-school > span {
  display: flex;
  flex-direction: column;
}

.space-school strong {
  font-size: 15px;
}

.space-school small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 13px 14px;
  background: var(--italia-pale);
  border-left: 5px solid var(--italia);
  font-size: 11px;
}

.data-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.data-row > span i {
  color: var(--italia);
  font-style: normal;
}

.data-row > b {
  color: var(--green);
  font-size: 9px;
  text-transform: uppercase;
}

.local-ai {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  color: var(--cream);
  background: var(--institutional-deep);
  border: var(--line);
}

.local-ai > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--orange);
  font: 900 13px/1 var(--display);
}

.local-ai > div {
  display: flex;
  flex-direction: column;
}

.local-ai b {
  font-size: 12px;
}

.local-ai small {
  color: var(--italia-soft);
  font-size: 8px;
}

.local-ai > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.privacy-seal {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 5%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--lime);
  border: 3px double var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(8deg);
}

.privacy-seal span {
  font: 900 22px/1 var(--display);
}

.privacy-seal b {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 2px;
}

.fit {
  background: var(--paper);
}

.fit-intro {
  max-width: 1440px;
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 55px;
  margin: 0 auto clamp(55px, 7vw, 95px);
}

.fit-intro .display-title em {
  color: var(--orange);
}

.fit-list {
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border: var(--line);
  box-shadow: var(--shadow);
}

.fit-list article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(27px, 3vw, 45px);
  background: var(--cream);
}

.fit-list article + article {
  border-left: var(--line);
}

.fit-list article:nth-child(2) {
  background: var(--cyan);
}

.fit-list article:nth-child(3) {
  color: var(--cream);
  background: var(--institutional);
}

.fit-list article > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font: 900 18px/1 var(--display);
  transform: rotate(-5deg);
}

.fit-list article:nth-child(2) > span {
  background: var(--cream);
}

.fit-list article:nth-child(3) > span {
  background: var(--orange);
}

.fit-list h3 {
  margin: 36px 0 12px;
  font: 900 clamp(24px, 2.2vw, 34px)/1 var(--display);
  letter-spacing: -1.4px;
}

.fit-list p {
  margin: 0;
  font-size: 15px;
  font-weight: 620;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--cream);
  background: var(--italia);
  text-align: center;
  overflow: hidden;
}

.cta-grid {
  opacity: 0.3;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}

.cta > *:not(.cta-grid):not(.cta-burst) {
  position: relative;
  z-index: 2;
}

.cta-burst {
  position: absolute;
  top: 9%;
  right: 9%;
  color: var(--yellow);
  font-size: clamp(74px, 10vw, 150px);
  line-height: 1;
  transform: rotate(12deg);
}

.eyebrow-dark {
  color: var(--cream);
  background: var(--institutional-deep);
}

.cta h2 {
  margin: 0;
  font: 900 clamp(61px, 8.5vw, 132px)/0.84 var(--display);
  letter-spacing: clamp(-8px, -0.62vw, -3px);
  text-transform: uppercase;
}

.cta h2 em {
  color: var(--yellow);
  font-style: normal;
  text-shadow: 4px 4px 0 var(--ink);
}

.cta > p:not(.eyebrow) {
  max-width: 780px;
  margin: 35px auto 0;
  color: #dcecff;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 620;
}

.cta-actions {
  justify-content: center;
}

.cta-actions > span {
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 38px;
  padding: 34px clamp(24px, 5vw, 78px) 55px;
  color: var(--cream);
  background: var(--institutional-deep);
  border-top: var(--line);
}

.footer-brand .brand-name strong span {
  color: var(--yellow);
}

.site-footer > p {
  margin: 0;
  color: var(--italia-soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 12px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--yellow);
}

.site-footer .footer-meta {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(191, 223, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.4px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1320px) {
  .site-header {
    gap: 18px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 17px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.78fr) minmax(550px, 1.22fr);
    padding-right: 45px;
    padding-left: 45px;
  }

  .hero h1 {
    font-size: clamp(53px, 5.7vw, 79px);
  }

  .app-body {
    grid-template-columns: 112px minmax(235px, 1fr) minmax(170px, 0.68fr);
  }

  .document-panel {
    padding: 11px;
  }

  .document-sheet {
    padding-right: 14px;
    padding-left: 14px;
  }

  .flows-intro {
    grid-template-columns: 0.25fr 1fr 0.5fr;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-scrolled .menu-toggle {
    color: var(--cream);
    background: var(--italia);
  }

  .site-header.is-scrolled .menu-toggle > i,
  .site-header.is-scrolled .menu-toggle > i::before {
    background: var(--cream);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 32px 42px;
    color: var(--cream);
    background: var(--institutional-deep);
    border-left: var(--line);
    transform: translateX(105%);
    transition: transform 250ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(191, 223, 255, 0.25);
    font: 900 20px/1 var(--display);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .parentelab-link {
    margin-top: 16px;
    border-bottom: 0 !important;
    color: var(--italia-soft);
    font: 800 12px/1 var(--body) !important;
  }

  .main-nav .nav-cta {
    margin-top: 19px;
    color: var(--ink);
    background: var(--yellow);
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 75px;
    padding: 135px 6vw 110px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    font-size: clamp(66px, 8.7vw, 98px);
  }

  .hero-product {
    max-width: 860px;
    justify-self: center;
  }

  .split-heading,
  .process-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

  .section-lead {
    max-width: 680px;
  }

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

  .benefit-main {
    grid-column: 1 / -1;
  }

  .flows-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .flows-intro h2 {
    max-width: 900px;
  }

  .flows-intro > p:last-child {
    max-width: 620px;
  }

  .flow-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .flow-content > div:first-child {
    max-width: 760px;
  }

  .flow-visual {
    width: 100%;
  }

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

  .process-steps li:nth-child(3) {
    border-top: var(--line);
    border-left: 0;
  }

  .process-steps li:nth-child(4) {
    border-top: var(--line);
  }

  .human-note {
    grid-template-columns: 110px 1fr;
  }

  .human-note > p {
    grid-column: 2;
  }

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

  .security-copy {
    max-width: 850px;
  }

  .security-visual {
    width: min(820px, 100%);
    justify-self: center;
  }

  .fit-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .site-footer > p:not(.footer-meta) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 42px;
  }

  .brand-letter {
    padding-left: 6px;
    font-size: 24px;
  }

  .brand-mark > i {
    height: 26px;
  }

  .brand-mark > b {
    width: 21px;
    font-size: 10px;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .brand-name small {
    max-width: 125px;
    font-size: 7px;
  }

  .menu-toggle {
    position: fixed;
    z-index: 102;
    top: 15px;
    right: 16px;
    min-height: 40px;
    padding: 0 11px;
  }

  .hero {
    gap: 58px;
    padding: 112px 20px 80px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 9.8vw, 52px);
    letter-spacing: -2.2px;
  }

  .hero h1 em::before {
    border-width: 2px;
  }

  .hero-intro {
    margin-top: 27px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button {
    align-self: stretch;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-product {
    width: 150%;
    margin-right: -24%;
    margin-left: -26%;
    transform: scale(0.98);
  }

  .app-body {
    grid-template-columns: 92px minmax(215px, 1fr);
    min-height: 445px;
  }

  .document-panel {
    display: none;
  }

  .chat-panel {
    border-right: 0;
  }

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

  .window-title {
    display: none;
  }

  .sticker-top {
    top: -25px;
    right: 17%;
  }

  .sticker-bottom {
    right: 15%;
    bottom: -21px;
  }

  .section {
    padding: 80px 20px;
  }

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

  .display-title,
  .flows-intro h2,
  .security-copy h2 {
    font-size: clamp(45px, 13vw, 64px);
    letter-spacing: -3px;
  }

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

  .benefit-main {
    grid-column: auto;
  }

  .benefit-card {
    min-height: 350px;
  }

  .flow-meta {
    padding-right: 15px;
    padding-left: 15px;
  }

  .flow-content {
    min-height: auto;
    gap: 34px;
    padding: 32px 20px 42px;
  }

  .flow-card h3 {
    font-size: clamp(38px, 11.5vw, 55px);
    letter-spacing: -2.6px;
  }

  .flow-card p {
    font-size: 15px;
  }

  .flow-card li {
    font-size: 13px;
  }

  .project-stack {
    min-height: 290px;
  }

  .mini-doc {
    width: 55%;
    height: 260px;
    padding: 20px 17px;
  }

  .mini-doc > b {
    margin: 27px 0 21px;
    font-size: 14px;
  }

  .mini-doc > i {
    height: 5px;
    margin-top: 9px;
  }

  .doc-three em {
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .roster-visual {
    min-height: 280px;
    gap: 9px;
  }

  .sheet-card {
    min-height: 235px;
    padding: 18px;
  }

  .sheet-top b {
    font-size: 12px;
  }

  .sheet-card > i {
    height: 20px;
  }

  .zip-card {
    min-height: 170px;
    padding: 13px;
  }

  .zip-card > i {
    width: 49px;
    height: 49px;
    font-size: 24px;
  }

  .zip-card b {
    font-size: 11px;
  }

  .template-visual {
    min-height: 310px;
  }

  .template-file {
    width: 91%;
    min-height: 265px;
    padding: 25px 22px;
  }

  .template-file > b {
    margin: 26px 0 18px;
    font-size: 17px;
  }

  .template-file > i {
    font-size: 9px;
  }

  .ai-scan {
    right: -2%;
    bottom: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 270px;
  }

  .process-steps li + li,
  .process-steps li:nth-child(3),
  .process-steps li:nth-child(4) {
    border-top: var(--line);
    border-left: 0;
  }

  .human-note {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 27px;
  }

  .human-note > p {
    grid-column: auto;
  }

  .security {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .security-visual {
    min-height: 550px;
  }

  .school-space {
    width: 88%;
    padding: 16px;
  }

  .data-row {
    padding: 11px;
  }

  .privacy-seal {
    right: 1%;
    bottom: 2%;
    width: 88px;
    height: 88px;
  }

  .privacy-seal span {
    font-size: 17px;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .fit-list article {
    min-height: 290px;
  }

  .fit-list article + article {
    border-top: var(--line);
    border-left: 0;
  }

  .cta h2 {
    font-size: clamp(52px, 15.5vw, 78px);
    letter-spacing: -4px;
  }

  .cta-burst {
    top: 4%;
    right: -3%;
    opacity: 0.55;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 35px 22px 48px;
  }

  .site-footer > p:not(.footer-meta),
  .site-footer .footer-meta {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 420px) {
  .brand-name small {
    display: none;
  }

  .main-nav {
    width: 100%;
  }

  .hero-product {
    width: 166%;
    margin-right: -33%;
    margin-left: -33%;
  }

  .hero-sticker {
    font-size: 8px;
  }

  .display-title,
  .flows-intro h2,
  .security-copy h2 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .mini-doc {
    width: 57%;
  }

  .doc-one {
    transform: translate(-91%, -50%) rotate(-7deg);
  }

  .doc-three {
    transform: translate(-9%, -50%) rotate(7deg);
  }

  .space-head {
    flex-direction: column;
  }

  .data-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

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