:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #173847;
  background: #f7fbfc;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #173847;
  --slate: #334b5a;
  --muted: #5e7480;
  --teal: #4d8988;
  --teal-dark: #356d6d;
  --mist: #eaf4f7;
  --mist-deep: #d7e9ed;
  --paper: #fffefb;
  --line: #c8dde2;
  --green: #26735f;
  --amber: #976000;
  --shadow: 0 22px 60px rgba(34, 74, 83, 0.11);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  background: #f8fbfb;
  color: var(--ink);
}
body.site-page {
  background: linear-gradient(180deg, #f9fcfc 0, #fff 38%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(77, 137, 136, 0.28);
  outline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #c7dade;
  border-radius: 11px;
  background: var(--mist);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}
.site-nav > a {
  color: #385461;
  font-size: 0.8rem;
  font-weight: 740;
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--teal-dark);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    transform 0.16s,
    background 0.16s,
    border-color 0.16s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(77, 137, 136, 0.2);
}
.button.primary:hover {
  background: var(--teal-dark);
}
.button.secondary {
  color: var(--teal-dark);
  border-color: #79a8aa;
  background: #fff;
}
.button.compact {
  min-height: 40px;
  padding-inline: 16px;
}
.button.text {
  min-height: auto;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
}
.hero {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  margin: auto;
  padding: 88px 24px 104px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  border-top: 2px solid var(--teal);
}
.hero h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.hero-copy > p,
.page-hero > p {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.assurance {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #59707b;
  font-size: 0.72rem;
}
.assurance span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
  font-weight: 900;
}
.institution-panel {
  position: relative;
  padding: 20px;
  border: 1px solid #bcd4d9;
  border-radius: 22px;
  background: linear-gradient(150deg, #edf7f8, #dceef1);
  box-shadow: var(--shadow);
}
.institution-panel::before {
  content: "CANADA · CLEAR AGREEMENT WORKFLOWS";
  position: absolute;
  right: 22px;
  top: -25px;
  color: #6f8a94;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.app-window {
  overflow: hidden;
  border: 1px solid #bfd0d5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(35, 70, 79, 0.1);
}
.window-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid #d7e4e7;
}
.window-bar strong {
  font-size: 0.84rem;
}
.pill {
  padding: 7px 10px;
  border-radius: 99px;
  color: var(--green);
  background: #e8f4ef;
  font-size: 0.67rem;
  font-weight: 800;
}
.window-body {
  display: grid;
  grid-template-columns: 135px 1fr;
  min-height: 410px;
}
.window-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 14px;
  border-right: 1px solid #dae5e7;
  background: #f6fafb;
}
.window-side span {
  padding: 9px;
  border-radius: 7px;
  color: #697d85;
  font-size: 0.67rem;
}
.window-side span:first-child {
  color: var(--teal-dark);
  background: #e3f0f2;
  font-weight: 800;
}
.agreement-sheet {
  margin: 22px;
  padding: 28px;
  border: 1px solid #d5e0e2;
  border-radius: 9px;
  background: var(--paper);
}
.agreement-sheet h3 {
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: 1.1rem;
}
.paper-line {
  height: 5px;
  margin: 9px 0;
  border-radius: 5px;
  background: #dce4e5;
}
.paper-line.short {
  width: 68%;
}
.signature-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 12px;
  border: 1px solid #dbe5e6;
  border-radius: 8px;
}
.signature-row b,
.signature-row small {
  display: block;
}
.signature-row small {
  margin-top: 3px;
  color: #6b7e85;
  font-size: 0.63rem;
}
.signature-row em {
  color: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--mist);
}
.trust-strip > div {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  padding: 22px 24px;
}
.trust-strip span {
  padding: 5px 20px;
  border-right: 1px solid #bfd4d8;
  color: #47636e;
  font-size: 0.74rem;
  text-align: center;
}
.trust-strip span:last-child {
  border-right: 0;
}
.section {
  max-width: 1240px;
  margin: auto;
  padding: 96px 24px;
}
.section.tint {
  max-width: none;
  background: var(--mist);
}
.section.tint > .section-inner {
  max-width: 1240px;
  margin: auto;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2,
.split-copy h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.section-heading p,
.split-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.steps,
.feature-grid,
.solution-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step,
.feature-card,
.solution-card,
.article-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font:
    700 1rem Georgia,
    serif;
}
.step h3,
.feature-card h3,
.solution-card h3,
.article-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1rem;
}
.step p,
.feature-card p,
.solution-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 72px;
}
.proof-panel {
  padding: 28px;
  border: 1px solid #bdd6da;
  border-radius: 18px;
  background: #fff;
}
.proof-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #dfebed;
}
.proof-row:last-child {
  border-bottom: 0;
}
.proof-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: var(--teal-dark);
  background: var(--mist);
}
.proof-row strong,
.proof-row small {
  display: block;
}
.proof-row small {
  margin-top: 3px;
  color: #6b7f87;
  font-size: 0.68rem;
}
.proof-row em {
  color: var(--green);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}
.cta-band {
  max-width: 1192px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin: 0 auto 92px;
  padding: 38px 42px;
  border-radius: 20px;
  color: #fff;
  background: var(--slate);
}
.cta-band h2 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}
.cta-band p {
  margin: 0;
  color: #d4e3e6;
}
.page-hero {
  max-width: 1240px;
  margin: auto;
  padding: 82px 24px 58px;
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}
.page-hero.compact h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}
.breadcrumb {
  margin-bottom: 20px;
  color: #68808a;
  font-size: 0.7rem;
  font-weight: 750;
}
.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.segmented {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.segmented button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  color: #607680;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}
.segmented button.active {
  color: #fff;
  background: var(--teal);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.plan-card.featured {
  border-color: var(--teal);
  box-shadow:
    0 0 0 3px rgba(77, 137, 136, 0.12),
    var(--shadow);
}
.plan-card .tag {
  width: max-content;
  margin-bottom: 20px;
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 0.66rem;
  font-weight: 850;
}
.plan-card h2 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}
.price {
  margin: 18px 0;
  color: var(--ink);
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}
.price small {
  color: #6b7d85;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
}
.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.plan-card li {
  color: #506973;
  font-size: 0.78rem;
}
.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}
.plan-card .button {
  margin-top: auto;
}
.volume-select {
  display: grid;
  gap: 6px;
  margin: 10px 0 4px;
  color: #425d68;
  font-size: 0.72rem;
  font-weight: 800;
}
.volume-select select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}
.pack-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(34, 74, 83, 0.07);
}
.pack-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}
.pack-table th,
.pack-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #dbe8ea;
  text-align: left;
}
.pack-table th {
  color: #fff;
  background: var(--slate);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.pack-table td {
  color: #48616c;
  font-size: 0.82rem;
}
.pack-table td:nth-child(2),
.pack-table td:nth-child(3) {
  color: var(--ink);
  font-weight: 800;
}
.pack-table tr:last-child td {
  border-bottom: 0;
}
.pack-table tbody tr:hover {
  background: #f6fbfb;
}
.resource-clusters {
  display: grid;
  gap: 55px;
}
.cluster-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.cluster-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
}
.cluster-heading p {
  margin: 0;
  color: #6b7f87;
  font-size: 0.76rem;
}
.article-grid {
  grid-template-columns: repeat(3, 1fr);
}
.article-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.article-card .topic {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
}
.article-layout {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 60px;
  margin: auto;
  padding: 50px 24px 100px;
}
.article-body h2 {
  margin: 40px 0 12px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}
.article-body p,
.article-body li {
  color: #506873;
  font-size: 0.92rem;
  line-height: 1.78;
}
.article-body .note {
  padding: 18px;
  border-left: 3px solid var(--teal);
  background: var(--mist);
}
.article-aside {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.article-aside strong {
  display: block;
  margin-bottom: 8px;
}
.article-aside p {
  color: #657a83;
  font-size: 0.75rem;
  line-height: 1.5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #405a65;
  font-size: 0.74rem;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}
.consent-banner {
  position: fixed;
  z-index: 50;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 760px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin: auto;
  padding: 18px;
  border: 1px solid #afcbd0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.consent-banner.show {
  display: grid;
}
.consent-banner p {
  margin: 4px 0 0;
  color: #657983;
  font-size: 0.72rem;
}
.consent-actions {
  display: flex;
  gap: 8px;
}
.consent-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}
.consent-actions .accept {
  color: #fff;
  background: var(--teal);
}
footer {
  padding: 52px max(24px, calc((100vw - 1240px) / 2)) 26px;
  color: #d8e6e8;
  background: #203c48;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 50px;
  padding-bottom: 38px;
  border-bottom: 1px solid #49636d;
}
.footer-top .brand {
  color: #fff;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.72rem;
}
.footer-col a {
  color: #c7d9dc;
  font-size: 0.72rem;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #9fb6bc;
  font-size: 0.67rem;
}
.legal-page .site-header {
  position: static;
}
.legal-hero {
  padding: 72px max(24px, calc((100vw - 1080px) / 2)) 48px;
  background: var(--mist);
}
.legal-hero h1 {
  font-family: Georgia, serif;
  font-weight: 500;
}
.legal-layout {
  grid-template-columns: 220px minmax(0, 760px);
}
@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .institution-panel {
    max-width: 760px;
  }
  .steps,
  .feature-grid,
  .solution-grid,
  .pricing-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip span:nth-child(2) {
    border-right: 0;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    position: absolute;
    inset: 66px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 30px rgba(25, 59, 69, 0.1);
  }
  .site-nav.open {
    display: grid;
  }
  .site-nav > a {
    padding: 12px 4px;
  }
  .site-nav .button {
    margin-top: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 18px 70px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .institution-panel {
    padding: 10px;
  }
  .window-body {
    grid-template-columns: 1fr;
  }
  .window-side {
    display: none;
  }
  .agreement-sheet {
    margin: 12px;
    padding: 20px;
  }
  .trust-strip > div {
    grid-template-columns: 1fr;
  }
  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid #c9dde1;
  }
  .trust-strip span:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 70px 18px;
  }
  .steps,
  .feature-grid,
  .solution-grid,
  .pricing-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 36px;
  }
  .cta-band {
    grid-template-columns: 1fr;
    margin: 0 18px 70px;
    padding: 30px 24px;
  }
  .page-hero {
    padding: 55px 18px 35px;
  }
  .cluster-heading {
    align-items: start;
    flex-direction: column;
  }
  .contact-grid {
    gap: 14px;
  }
  .consent-banner {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > .brand {
    grid-column: 1/-1;
  }
  .footer-meta {
    flex-direction: column;
  }
  .article-layout {
    padding: 30px 18px 70px;
  }
}
