
/* ==========================================================
   CLARITENOTE PUBLIC DESIGN SYSTEM V2
   Landing Page Revamp V1
   ========================================================== */

:root {
  --cn-public-ink: #172026;
  --cn-public-heading: #073047;
  --cn-public-muted: #66757d;

  --cn-public-bg: #f7f9f8;
  --cn-public-surface: #ffffff;
  --cn-public-soft: #eef2f2;
  --cn-public-soft-2: #f2f5f4;

  --cn-public-border: #dce4e2;
  --cn-public-border-light: #e8edeb;

  --cn-public-accent: #294b55;
  --cn-public-dark: #171b1d;

  --cn-public-radius-sm: 10px;
  --cn-public-radius: 16px;
  --cn-public-radius-lg: 22px;

  --cn-public-shadow:
    0 18px 45px rgba(20, 35, 40, 0.07);
}


/* ==========================================================
   PAGE FOUNDATION
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body.cn-landing-refresh {
  margin: 0;

  background:
    var(--cn-public-bg);

  color:
    var(--cn-public-ink);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing:
    antialiased;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

body.cn-landing-refresh nav {
  position:
    sticky;

  top:
    0;

  z-index:
    100;

  width:
    100%;

  background:
    rgba(255, 255, 255, 0.96);

  border-bottom:
    1px solid var(--cn-public-border-light);

  box-shadow:
    0 1px 0 rgba(20, 35, 40, 0.02);

  backdrop-filter:
    blur(14px);

  -webkit-backdrop-filter:
    blur(14px);
}

body.cn-landing-refresh .nav-inner {
  max-width:
    1180px;

  min-height:
    72px;

  margin:
    0 auto;

  padding:
    0 28px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;
}

body.cn-landing-refresh .nav-logo {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  color:
    var(--cn-public-heading);

  text-decoration:
    none;

  font-size:
    20px;

  font-weight:
    750;

  letter-spacing:
    -0.5px;
}

body.cn-landing-refresh .nav-logo img {
  display:
    block;

  width:
    35px !important;

  height:
    39px !important;

  object-fit:
    contain;

  filter:
    none !important;

  opacity:
    1 !important;

  transform:
    none !important;
}

body.cn-landing-refresh .nav-logo:hover img,
body.cn-landing-refresh .nav-logo:hover {
  transform:
    none !important;
}

body.cn-landing-refresh .nav-links {
  display:
    flex;

  align-items:
    center;

  gap:
    32px;
}

body.cn-landing-refresh .nav-links a {
  color:
    #53636b;

  text-decoration:
    none;

  font-size:
    14px;

  font-weight:
    600;

  transition:
    color 0.18s ease;
}

body.cn-landing-refresh .nav-links a:hover {
  color:
    var(--cn-public-heading);
}

body.cn-landing-refresh .nav-cta {
  display:
    flex;

  align-items:
    center;

  gap:
    10px;
}

body.cn-landing-refresh .btn-ghost {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  min-height:
    42px;

  padding:
    0 17px;

  border:
    1px solid transparent;

  border-radius:
    9px;

  color:
    #405159;

  background:
    transparent;

  font-size:
    14px;

  font-weight:
    650;

  text-decoration:
    none;
}

body.cn-landing-refresh .btn-ghost:hover {
  background:
    #f3f6f5;

  color:
    var(--cn-public-heading);
}

body.cn-landing-refresh .btn-primary {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  min-height:
    42px;

  padding:
    0 18px;

  border:
    1px solid var(--cn-public-dark);

  border-radius:
    9px;

  background:
    var(--cn-public-dark);

  color:
    #ffffff;

  text-decoration:
    none;

  font-size:
    14px;

  font-weight:
    700;

  box-shadow:
    none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

body.cn-landing-refresh .btn-primary:hover {
  background:
    #293033;

  border-color:
    #293033;

  transform:
    translateY(-1px);
}


/* ==========================================================
   HERO
   ========================================================== */

body.cn-landing-refresh .hero.cn-original-hero {
  position:
    relative;

  overflow:
    hidden;

  padding:
    92px 28px 96px;

  background:
    var(--cn-public-bg);
}

body.cn-landing-refresh .cn-hero-shell {
  width:
    100%;

  max-width:
    1180px;

  margin:
    0 auto;

  display:
    grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(390px, 0.92fr);

  align-items:
    center;

  gap:
    76px;
}

body.cn-landing-refresh .cn-hero-copy {
  max-width:
    650px;
}

body.cn-landing-refresh .cn-clinical-tab {
  width:
    fit-content;

  margin:
    0 0 24px;

  padding:
    8px 12px;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  border:
    1px solid #d6e1de;

  border-radius:
    10px;

  background:
    #eef3f1;

  color:
    var(--cn-public-heading);

  box-shadow:
    none;
}

body.cn-landing-refresh
.cn-clinical-tab-icon {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    #375c58;
}

body.cn-landing-refresh
.cn-clinical-tab-copy {
  display:
    flex;

  flex-direction:
    column;

  gap:
    1px;
}

body.cn-landing-refresh
.cn-clinical-tab-copy strong {
  font-size:
    12px;

  font-weight:
    700;
}

body.cn-landing-refresh
.cn-clinical-tab-copy small {
  color:
    #75847f;

  font-size:
    10px;

  font-weight:
    550;
}

body.cn-landing-refresh
#cnHeroTitle {
  max-width:
    680px;

  margin:
    0;

  color:
    var(--cn-public-heading);

  font-size:
    clamp(44px, 5.2vw, 68px);

  line-height:
    0.99;

  font-weight:
    780;

  letter-spacing:
    -3.1px;
}

body.cn-landing-refresh
#cnHeroTitle .cn-ink-mark {
  position:
    static;

  color:
    var(--cn-public-heading);

  background:
    none;

  text-decoration:
    none;
}

body.cn-landing-refresh
#cnHeroTitle .cn-ink-mark::before,
body.cn-landing-refresh
#cnHeroTitle .cn-ink-mark::after {
  display:
    none !important;
}

body.cn-landing-refresh
.cn-hero-lead {
  max-width:
    610px;

  margin:
    27px 0 0;

  color:
    #5d6d74;

  font-size:
    17px;

  line-height:
    1.72;

  font-weight:
    450;
}


/* ==========================================================
   HERO ACTIONS
   ========================================================== */

body.cn-landing-refresh
.cn-hero-actions {
  margin-top:
    30px;

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    12px;
}

body.cn-landing-refresh
.cn-cta-primary,
body.cn-landing-refresh
.cn-cta-secondary {
  min-height:
    54px;

  padding:
    0 20px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    14px;

  border-radius:
    10px;

  text-decoration:
    none;

  box-shadow:
    none;
}

body.cn-landing-refresh
.cn-cta-primary {
  border:
    1px solid var(--cn-public-dark);

  background:
    var(--cn-public-dark);

  color:
    #ffffff;
}

body.cn-landing-refresh
.cn-cta-primary:hover {
  background:
    #293033;

  border-color:
    #293033;
}

body.cn-landing-refresh
.cn-cta-secondary {
  border:
    1px solid #d5dedc;

  background:
    #ffffff;

  color:
    var(--cn-public-heading);
}

body.cn-landing-refresh
.cn-cta-secondary:hover {
  border-color:
    #bac9c6;

  background:
    #fbfcfc;
}

body.cn-landing-refresh
.cn-cta-copy,
body.cn-landing-refresh
.cn-secondary-copy {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    1px;
}

body.cn-landing-refresh
.cn-cta-copy strong,
body.cn-landing-refresh
.cn-secondary-copy strong {
  font-size:
    14px;

  font-weight:
    700;
}

body.cn-landing-refresh
.cn-cta-copy small,
body.cn-landing-refresh
.cn-secondary-copy small {
  color:
    inherit;

  opacity:
    0.67;

  font-size:
    10px;

  font-weight:
    500;
}

body.cn-landing-refresh
.cn-cta-arrow {
  font-size:
    18px;
}


/* ==========================================================
   HERO TRUST / EVIDENCE
   ========================================================== */

body.cn-landing-refresh
.cn-hero-evidence {
  margin-top:
    27px;

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    9px 18px;
}

body.cn-landing-refresh
.cn-hero-evidence span {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    6px;

  color:
    #6c7b81;

  font-size:
    11px;

  font-weight:
    600;
}

body.cn-landing-refresh
.cn-hero-evidence i {
  width:
    18px;

  height:
    18px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #e6efeb;

  color:
    #355b51;

  font-style:
    normal;

  font-size:
    10px;
}


/* ==========================================================
   WORKFLOW CARD
   ========================================================== */

body.cn-landing-refresh
.cn-workflow-card {
  position:
    relative;

  padding:
    28px;

  overflow:
    hidden;

  border:
    1px solid var(--cn-public-border);

  border-radius:
    var(--cn-public-radius-lg);

  background:
    var(--cn-public-surface);

  box-shadow:
    var(--cn-public-shadow);

  transform:
    none !important;
}

body.cn-landing-refresh
.cn-workflow-fold {
  display:
    none !important;
}

body.cn-landing-refresh
.cn-workflow-head {
  padding-bottom:
    20px;

  margin-bottom:
    18px;

  display:
    flex;

  align-items:
    flex-start;

  justify-content:
    space-between;

  gap:
    18px;

  border-bottom:
    1px solid var(--cn-public-border-light);
}

body.cn-landing-refresh
.cn-workflow-eyebrow {
  display:
    block;

  margin-bottom:
    5px;

  color:
    #7b8a90;

  font-size:
    10px;

  font-weight:
    750;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}

body.cn-landing-refresh
.cn-workflow-head strong {
  color:
    var(--cn-public-heading);

  font-size:
    17px;

  font-weight:
    720;
}

body.cn-landing-refresh
.cn-control-status {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    7px;

  padding:
    6px 9px;

  border:
    1px solid #dae4e1;

  border-radius:
    999px;

  background:
    #f4f7f6;

  color:
    #577069;

  font-size:
    9px;

  font-weight:
    700;

  white-space:
    nowrap;
}

body.cn-landing-refresh
.cn-control-status i {
  width:
    6px;

  height:
    6px;

  border-radius:
    50%;

  background:
    #4e7569;
}

body.cn-landing-refresh
.cn-workflow-steps {
  margin:
    0;

  padding:
    0;

  display:
    grid;

  gap:
    8px;

  list-style:
    none;
}

body.cn-landing-refresh
.cn-workflow-steps li {
  min-height:
    66px;

  padding:
    11px 13px;

  display:
    grid;

  grid-template-columns:
    30px 42px 1fr;

  align-items:
    center;

  gap:
    11px;

  border:
    1px solid #e4eae8;

  border-radius:
    12px;

  background:
    #fbfcfc;
}

body.cn-landing-refresh
.cn-step-number {
  color:
    #95a3a7;

  font-size:
    10px;

  font-weight:
    750;
}

body.cn-landing-refresh
.cn-step-symbol {
  width:
    40px;

  height:
    40px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid #dde6e3;

  border-radius:
    10px;

  background:
    #f0f4f3;

  color:
    #365861;
}

body.cn-landing-refresh
.cn-step-copy {
  display:
    flex;

  flex-direction:
    column;

  gap:
    3px;
}

body.cn-landing-refresh
.cn-step-copy strong {
  color:
    var(--cn-public-heading);

  font-size:
    13px;

  font-weight:
    700;
}

body.cn-landing-refresh
.cn-step-copy small {
  color:
    #78878c;

  font-size:
    11px;
}


/* ==========================================================
   PUBLIC SECTIONS
   ========================================================== */

body.cn-landing-refresh
#features,
body.cn-landing-refresh
#how,
body.cn-landing-refresh
#pricing,
body.cn-landing-refresh
.faq-section {
  scroll-margin-top:
    90px;
}

body.cn-landing-refresh
#features,
body.cn-landing-refresh
#how,
body.cn-landing-refresh
.faq-section {
  background:
    #ffffff;
}

body.cn-landing-refresh
#how,
body.cn-landing-refresh
.faq-section {
  border-top:
    1px solid var(--cn-public-border-light);

  border-bottom:
    1px solid var(--cn-public-border-light);
}

body.cn-landing-refresh
#features h2,
body.cn-landing-refresh
#how h2,
body.cn-landing-refresh
#pricing h2,
body.cn-landing-refresh
.faq-section h2 {
  color:
    var(--cn-public-heading);

  font-weight:
    760;

  letter-spacing:
    -1.5px;
}

body.cn-landing-refresh
#features h3,
body.cn-landing-refresh
#how h3 {
  color:
    var(--cn-public-heading);

  font-weight:
    700;
}


/* ==========================================================
   PRICING
   ========================================================== */

body.cn-landing-refresh
.cn-public-pricing {
  background:
    var(--cn-public-bg);
}

body.cn-landing-refresh
.cn-public-price-card {
  border:
    1px solid var(--cn-public-border);

  border-radius:
    18px;

  background:
    #ffffff;

  box-shadow:
    none;

  transform:
    none;
}

body.cn-landing-refresh
.cn-public-price-card:hover {
  border-color:
    #c5d1ce;

  transform:
    translateY(-2px);
}

body.cn-landing-refresh
.cn-public-price-card.featured {
  border:
    1.5px solid #819995;

  background:
    #ffffff;

  box-shadow:
    0 16px 40px rgba(24, 50, 54, 0.08);
}


/* ==========================================================
   FAQ
   ========================================================== */

body.cn-landing-refresh
.faq-section {
  background:
    #ffffff;
}

body.cn-landing-refresh
.faq-item {
  overflow:
    hidden;

  border:
    1px solid var(--cn-public-border);

  border-radius:
    12px;

  background:
    #ffffff;

  box-shadow:
    none;
}

body.cn-landing-refresh
.faq-item summary {
  color:
    var(--cn-public-heading);

  font-weight:
    650;
}

body.cn-landing-refresh
.faq-answer {
  color:
    #617077;

  line-height:
    1.7;
}

body.cn-landing-refresh
.faq-contact {
  color:
    #77858a;
}

body.cn-landing-refresh
.faq-contact a {
  color:
    var(--cn-public-heading);

  font-weight:
    650;
}


/* ==========================================================
   FINAL CTA
   ========================================================== */

body.cn-landing-refresh
.cta-strip {
  margin:
    0;

  padding:
    82px 28px;

  background:
    #eef2f2;

  color:
    var(--cn-public-heading);

  text-align:
    center;
}

body.cn-landing-refresh
.cta-strip h2 {
  margin:
    0;

  color:
    var(--cn-public-heading);

  font-size:
    clamp(32px, 4vw, 46px);

  line-height:
    1.08;

  font-weight:
    760;

  letter-spacing:
    -1.8px;
}

body.cn-landing-refresh
.cta-strip p {
  margin:
    18px auto 26px;

  color:
    #67777d;

  font-size:
    15px;
}


/* ==========================================================
   FOOTER
   ========================================================== */

body.cn-landing-refresh footer {
  padding:
    62px 28px 28px;

  border-top:
    1px solid var(--cn-public-border);

  background:
    #ffffff;

  color:
    #607078;
}

body.cn-landing-refresh
.footer-grid {
  max-width:
    1180px;

  margin:
    0 auto;
}

body.cn-landing-refresh
.footer-logo {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  color:
    var(--cn-public-heading);

  text-decoration:
    none;

  font-size:
    19px;

  font-weight:
    750;
}

body.cn-landing-refresh
.footer-logo img {
  display:
    block;

  width:
    36px !important;

  height:
    40px !important;

  object-fit:
    contain;

  filter:
    none !important;

  opacity:
    1 !important;

  transform:
    none !important;
}

body.cn-landing-refresh
.footer-description {
  max-width:
    370px;

  color:
    #6b797f;

  line-height:
    1.7;
}

body.cn-landing-refresh
.footer-column h3 {
  color:
    var(--cn-public-heading);

  font-size:
    12px;

  font-weight:
    750;

  letter-spacing:
    0.04em;

  text-transform:
    uppercase;
}

body.cn-landing-refresh
.footer-links a {
  color:
    #6a797f;

  text-decoration:
    none;
}

body.cn-landing-refresh
.footer-links a:hover {
  color:
    var(--cn-public-heading);
}

body.cn-landing-refresh
.footer-bottom {
  max-width:
    1180px;

  margin:
    38px auto 0;

  padding-top:
    20px;

  border-top:
    1px solid var(--cn-public-border-light);

  color:
    #8a969a;

  font-size:
    11px;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 920px) {

  body.cn-landing-refresh
  .nav-links {
    display:
      none;
  }

  body.cn-landing-refresh
  .cn-hero-shell {
    grid-template-columns:
      1fr;

    gap:
      48px;
  }

  body.cn-landing-refresh
  .cn-workflow-card {
    max-width:
      620px;
  }

}


@media (max-width: 640px) {

  body.cn-landing-refresh
  .nav-inner {
    min-height:
      66px;

    padding:
      0 18px;
  }

  body.cn-landing-refresh
  .nav-logo {
    font-size:
      18px;
  }

  body.cn-landing-refresh
  .nav-logo img {
    width:
      30px !important;

    height:
      34px !important;
  }

  body.cn-landing-refresh
  .btn-ghost {
    display:
      none;
  }

  body.cn-landing-refresh
  .btn-primary {
    min-height:
      39px;

    padding:
      0 13px;

    font-size:
      12px;
  }

  body.cn-landing-refresh
  .hero.cn-original-hero {
    padding:
      62px 18px 70px;
  }

  body.cn-landing-refresh
  #cnHeroTitle {
    font-size:
      43px;

    line-height:
      1.01;

    letter-spacing:
      -2.2px;
  }

  body.cn-landing-refresh
  .cn-hero-lead {
    font-size:
      15px;
  }

  body.cn-landing-refresh
  .cn-hero-actions {
    display:
      grid;

    grid-template-columns:
      1fr;
  }

  body.cn-landing-refresh
  .cn-cta-primary,
  body.cn-landing-refresh
  .cn-cta-secondary {
    width:
      100%;

    box-sizing:
      border-box;
  }

  body.cn-landing-refresh
  .cn-hero-evidence {
    display:
      grid;

    grid-template-columns:
      1fr;

    gap:
      8px;
  }

  body.cn-landing-refresh
  .cn-workflow-card {
    padding:
      20px;
  }

  body.cn-landing-refresh
  .cn-workflow-head {
    flex-direction:
      column;
  }

  body.cn-landing-refresh
  .cta-strip {
    padding:
      64px 18px;
  }

  body.cn-landing-refresh
  footer {
    padding:
      48px 18px 24px;
  }

}

/* END CLARITENOTE PUBLIC DESIGN SYSTEM V2 */


/* ==========================================================
   CLARITENOTE LANDING REBUILD V2
   Fresh isolated layout.
   IMPORTANT:
   This intentionally does NOT restyle the pricing cards.
   ========================================================== */


/* ---------- FOUNDATION ---------- */

body.cn-public-v3 {
  background: #f7f9f8 !important;
  color: #172026 !important;
  overflow-x: hidden;
}

body.cn-public-v3 main {
  display: block !important;
}


/* ---------- NAV ---------- */

body.cn-public-v3 .cn3-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;

  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  background: rgba(255,255,255,.96) !important;

  border: 0 !important;
  border-bottom: 1px solid #e3e9e7 !important;

  box-shadow: none !important;

  backdrop-filter: blur(14px);
}

body.cn-public-v3 .cn3-nav-inner {
  width: 100%;
  max-width: 1180px;

  min-height: 72px;

  margin: 0 auto;
  padding: 0 28px;

  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

body.cn-public-v3 .cn3-brand,
body.cn-public-v3 .cn3-footer-logo {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: #073047 !important;

  text-decoration: none !important;

  font-size: 20px;
  font-weight: 750;

  letter-spacing: -.55px;
}

body.cn-public-v3 .cn3-brand img,
body.cn-public-v3 .cn3-footer-logo img {
  display: block;

  width: 34px;
  height: 38px;

  object-fit: contain;

  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.cn-public-v3 .cn3-nav-links {
  display: flex;
  align-items: center;

  gap: 31px;
}

body.cn-public-v3 .cn3-nav-links a {
  color: #5a696f !important;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 620;

  transition: color .15s ease;
}

body.cn-public-v3 .cn3-nav-links a:hover {
  color: #073047 !important;
}

body.cn-public-v3 .cn3-nav-actions {
  display: flex;
  align-items: center;

  gap: 9px;
}

body.cn-public-v3 .cn3-login {
  padding: 11px 14px;

  color: #536269 !important;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 650;
}

body.cn-public-v3 .cn3-nav-primary {
  min-height: 41px;

  padding: 0 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #171b1d !important;
  color: white !important;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 700;

  transition:
    background .15s ease,
    transform .15s ease;
}

body.cn-public-v3 .cn3-nav-primary:hover {
  background: #2a3032 !important;
  transform: translateY(-1px);
}


/* ---------- HERO ---------- */

body.cn-public-v3 .cn3-hero {
  position: relative;

  margin: 0 !important;

  padding: 92px 28px 104px !important;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f7f9f8 0%,
      #f7f9f8 72%,
      #f3f6f5 100%
    ) !important;
}

body.cn-public-v3 .cn3-hero::after {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  right: -270px;
  top: -250px;

  border-radius: 50%;

  background: #edf2f0;

  pointer-events: none;
}

body.cn-public-v3 .cn3-hero-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, .94fr)
    minmax(490px, 1.06fr);

  align-items: center;

  gap: 72px;
}

body.cn-public-v3 .cn3-hero-copy {
  max-width: 620px;
}

body.cn-public-v3 .cn3-eyebrow {
  width: fit-content;

  margin-bottom: 24px;

  padding: 7px 11px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border: 1px solid #d8e2df;
  border-radius: 999px;

  background: #eef3f1;

  color: #49635f;

  font-size: 10px;
  font-weight: 720;

  letter-spacing: .035em;

  text-transform: uppercase;
}

body.cn-public-v3 .cn3-eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #557b70;
}

body.cn-public-v3 .cn3-hero h1 {
  max-width: 650px;

  margin: 0 !important;

  color: #073047 !important;

  font-size: clamp(48px, 5vw, 70px) !important;
  line-height: .98 !important;

  font-weight: 780 !important;

  letter-spacing: -3.3px !important;
}

body.cn-public-v3 .cn3-hero h1 span {
  display: block;

  color: #405c64 !important;
}

body.cn-public-v3 .cn3-hero-lead {
  max-width: 590px;

  margin: 28px 0 0 !important;

  color: #627178 !important;

  font-size: 17px !important;
  line-height: 1.72 !important;

  font-weight: 450 !important;
}

body.cn-public-v3 .cn3-hero-actions {
  margin-top: 31px;

  display: flex;
  align-items: stretch;
  flex-wrap: wrap;

  gap: 11px;
}

body.cn-public-v3 .cn3-primary {
  min-height: 57px;

  padding: 0 19px 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  border-radius: 10px;

  background: #171b1d !important;
  color: white !important;

  text-decoration: none !important;
}

body.cn-public-v3 .cn3-primary > span {
  display: flex;
  flex-direction: column;

  gap: 1px;
}

body.cn-public-v3 .cn3-primary > span {
  font-size: 13px;
  font-weight: 720;
}

body.cn-public-v3 .cn3-primary small {
  color: rgba(255,255,255,.62);

  font-size: 9px;
  font-weight: 520;
}

body.cn-public-v3 .cn3-primary b {
  font-size: 19px;
  font-weight: 400;
}

body.cn-public-v3 .cn3-secondary {
  min-height: 57px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d5deda;
  border-radius: 10px;

  background: white !important;
  color: #29444d !important;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 680;
}

body.cn-public-v3 .cn3-hero-trust {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;

  gap: 9px 17px;
}

body.cn-public-v3 .cn3-hero-trust span {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: #768489;

  font-size: 10px;
  font-weight: 600;
}

body.cn-public-v3 .cn3-hero-trust i {
  width: 17px;
  height: 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e5eeea;
  color: #45695f;

  font-style: normal;
  font-size: 9px;
}


/* ---------- PRODUCT PREVIEW ---------- */

body.cn-public-v3 .cn3-product-stage {
  position: relative;

  min-width: 0;
}

body.cn-public-v3 .cn3-product-window {
  position: relative;
  z-index: 2;

  overflow: hidden;

  border: 1px solid #dce4e1;
  border-radius: 20px;

  background: white;

  box-shadow:
    0 30px 70px rgba(28,45,49,.12),
    0 5px 15px rgba(28,45,49,.05);
}

body.cn-public-v3 .cn3-product-top {
  height: 52px;

  padding: 0 17px;

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  border-bottom: 1px solid #e7ecea;

  background: #fafbfb;
}

body.cn-public-v3 .cn3-product-top > span {
  color: #819095;

  font-size: 10px;
  font-weight: 650;
}

body.cn-public-v3 .cn3-window-controls {
  display: flex;

  gap: 5px;
}

body.cn-public-v3 .cn3-window-controls i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d5dcda;
}

body.cn-public-v3 .cn3-status {
  justify-self: end;

  padding: 5px 8px;

  border-radius: 999px;

  background: #edf3f0;

  color: #557168;

  font-size: 8px;
  font-weight: 750;

  letter-spacing: .05em;

  text-transform: uppercase;
}

body.cn-public-v3 .cn3-product-body {
  min-height: 385px;

  display: grid;

  grid-template-columns: 158px 1fr;
}

body.cn-public-v3 .cn3-product-sidebar {
  padding: 23px 12px;

  border-right: 1px solid #e6ece9;

  background: #f7f9f8;
}

body.cn-public-v3 .cn3-sidebar-label {
  display: block;

  margin: 0 8px 12px;

  color: #9aa5a8;

  font-size: 8px;
  font-weight: 750;

  letter-spacing: .09em;
}

body.cn-public-v3 .cn3-sidebar-row {
  margin-bottom: 5px;

  padding: 9px 8px;

  display: flex;
  align-items: center;

  gap: 8px;

  border-radius: 8px;

  color: #768488;
}

body.cn-public-v3 .cn3-sidebar-row.active {
  background: #eaf0ee;

  color: #28454d;
}

body.cn-public-v3 .cn3-sidebar-icon {
  width: 25px;
  height: 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  border: 1px solid #d9e1df;
  border-radius: 7px;

  background: white;

  color: #758388;

  font-size: 7px;
  font-weight: 750;
}

body.cn-public-v3 .cn3-sidebar-row > span:last-child {
  display: flex;
  flex-direction: column;

  min-width: 0;

  gap: 1px;
}

body.cn-public-v3 .cn3-sidebar-row b {
  color: inherit;

  font-size: 8px;
  font-weight: 680;
}

body.cn-public-v3 .cn3-sidebar-row small {
  color: #9aa5a8;

  font-size: 7px;
}

body.cn-public-v3 .cn3-note-preview {
  padding: 27px 27px 20px;
}

body.cn-public-v3 .cn3-note-heading {
  padding-bottom: 18px;
  margin-bottom: 21px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 16px;

  border-bottom: 1px solid #e8edeb;
}

body.cn-public-v3 .cn3-note-heading span {
  display: block;

  margin-bottom: 4px;

  color: #9aa5a8;

  font-size: 7px;
  font-weight: 750;

  letter-spacing: .08em;
}

body.cn-public-v3 .cn3-note-heading h3 {
  margin: 0 !important;

  color: #17323a !important;

  font-size: 17px !important;
  font-weight: 730 !important;
}

body.cn-public-v3 .cn3-review-chip {
  padding: 6px 8px;

  border: 1px solid #d9e4e0;
  border-radius: 999px;

  background: #f3f7f5;

  color: #597068;

  font-size: 7px;
  font-weight: 680;
}

body.cn-public-v3 .cn3-note-section {
  margin-bottom: 19px;
}

body.cn-public-v3 .cn3-note-section strong {
  display: block;

  margin-bottom: 9px;

  color: #49626a;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: .08em;
}

body.cn-public-v3 .cn3-line {
  width: 73%;
  height: 6px;

  margin: 0 0 7px;

  border-radius: 99px;

  background: #edf1f0;
}

body.cn-public-v3 .cn3-line.long {
  width: 100%;
}

body.cn-public-v3 .cn3-line.medium {
  width: 86%;
}

body.cn-public-v3 .cn3-plan-row {
  margin-bottom: 7px;

  display: grid;
  grid-template-columns: 20px 1fr;

  align-items: center;

  gap: 6px;
}

body.cn-public-v3 .cn3-plan-row > span {
  width: 17px;
  height: 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  background: #eef3f1;

  color: #607870;

  font-size: 7px;
  font-weight: 750;
}

body.cn-public-v3 .cn3-plan-row .cn3-line {
  margin: 0;
}

body.cn-public-v3 .cn3-note-footer {
  padding-top: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;

  border-top: 1px solid #e8edeb;
}

body.cn-public-v3 .cn3-note-footer > span {
  color: #909ca0;

  font-size: 7px;
}

body.cn-public-v3 .cn3-note-footer button {
  padding: 8px 11px;

  border: 0;
  border-radius: 7px;

  background: #182023;
  color: white;

  font-family: inherit;
  font-size: 8px;
  font-weight: 680;
}

body.cn-public-v3 .cn3-floating-card {
  position: absolute;
  z-index: 5;

  padding: 11px 13px;

  display: flex;
  align-items: center;

  gap: 9px;

  border: 1px solid #dce5e2;
  border-radius: 11px;

  background: rgba(255,255,255,.97);

  box-shadow: 0 13px 32px rgba(27,43,47,.1);
}

body.cn-public-v3 .cn3-floating-card > span:last-child {
  display: flex;
  flex-direction: column;

  gap: 1px;
}

body.cn-public-v3 .cn3-floating-card strong {
  color: #29454d;

  font-size: 8px;
  font-weight: 720;
}

body.cn-public-v3 .cn3-floating-card small {
  color: #899599;

  font-size: 7px;
}

body.cn-public-v3 .cn3-floating-check,
body.cn-public-v3 .cn3-floating-lock {
  width: 26px;
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #e8f0ed;
  color: #4a6e64;

  font-size: 11px;
}

body.cn-public-v3 .cn3-floating-one {
  right: -28px;
  bottom: 51px;
}

body.cn-public-v3 .cn3-floating-two {
  left: -32px;
  top: 68px;
}


/* ---------- ASSURANCE ---------- */

body.cn-public-v3 .cn3-assurance {
  margin: 0 !important;
  padding: 0 28px !important;

  border-top: 1px solid #e2e9e6;
  border-bottom: 1px solid #e2e9e6;

  background: white !important;
}

body.cn-public-v3 .cn3-assurance-inner {
  max-width: 1180px;

  min-height: 105px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 36px;
}

body.cn-public-v3 .cn3-assurance-inner > div {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

body.cn-public-v3 .cn3-assurance strong {
  color: #29464f;

  font-size: 12px;
  font-weight: 720;
}

body.cn-public-v3 .cn3-assurance span {
  color: #849095;

  font-size: 10px;
}

body.cn-public-v3 .cn3-assurance-inner > i {
  width: 1px;
  height: 31px;

  background: #e2e8e6;
}


/* ---------- SHARED SECTION ---------- */

body.cn-public-v3 .cn3-section {
  margin: 0 !important;

  padding: 108px 28px !important;
}

body.cn-public-v3 .cn3-section-inner {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
}

body.cn-public-v3 .cn3-section-head {
  margin-bottom: 52px;

  display: grid;
  grid-template-columns: 1.25fr .75fr;

  align-items: end;

  gap: 80px;
}

body.cn-public-v3 .cn3-section-kicker {
  display: block;

  margin-bottom: 13px;

  color: #6f837d;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .11em;

  text-transform: uppercase;
}

body.cn-public-v3 .cn3-section-head h2,
body.cn-public-v3 .cn3-how-heading h2 {
  max-width: 720px;

  margin: 0 !important;

  color: #073047 !important;

  font-size: clamp(34px, 4vw, 49px) !important;
  line-height: 1.08 !important;

  font-weight: 760 !important;

  letter-spacing: -2px !important;
}

body.cn-public-v3 .cn3-section-head > p {
  margin: 0 0 4px;

  color: #718087;

  font-size: 13px;
  line-height: 1.72;
}


/* ---------- FEATURES ---------- */

body.cn-public-v3 .cn3-features {
  background: #f7f9f8 !important;
}

body.cn-public-v3 .cn3-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap: 12px;
}

body.cn-public-v3 .cn3-feature-card {
  position: relative;

  min-height: 247px;

  padding: 23px;

  box-sizing: border-box;

  overflow: hidden;

  border: 1px solid #dfe6e3;
  border-radius: 15px;

  background: white;
}

body.cn-public-v3 .cn3-feature-card.cn3-feature-large {
  grid-column: span 2;
}

body.cn-public-v3 .cn3-feature-icon {
  width: 42px;
  height: 42px;

  margin-bottom: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dbe4e1;
  border-radius: 11px;

  background: #eef3f1;
  color: #375962;
}

body.cn-public-v3 .cn3-feature-number {
  position: absolute;

  top: 24px;
  right: 24px;

  color: #b3bdbf;

  font-size: 9px;
  font-weight: 760;
}

body.cn-public-v3 .cn3-feature-card h3 {
  margin: 0 0 10px !important;

  color: #18373f !important;

  font-size: 16px !important;
  font-weight: 720 !important;
}

body.cn-public-v3 .cn3-feature-card p {
  max-width: 460px;

  margin: 0 !important;

  color: #748289 !important;

  font-size: 11px !important;
  line-height: 1.65 !important;
}

body.cn-public-v3 .cn3-mini-options {
  margin-top: 23px;

  display: flex;

  gap: 7px;
}

body.cn-public-v3 .cn3-mini-options span {
  padding: 5px 8px;

  border: 1px solid #e1e7e5;
  border-radius: 6px;

  background: #fafbfb;

  color: #718086;

  font-size: 8px;
  font-weight: 650;
}

body.cn-public-v3 .cn3-history-preview {
  margin-top: 20px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 7px;
}

body.cn-public-v3 .cn3-history-preview > span {
  padding: 9px;

  display: flex;
  flex-direction: column;

  gap: 2px;

  border: 1px solid #e1e7e5;
  border-radius: 7px;

  background: #fafbfb;
}

body.cn-public-v3 .cn3-history-preview b {
  color: #50636a;

  font-size: 8px;
  font-weight: 680;
}

body.cn-public-v3 .cn3-history-preview small {
  color: #a0aaad;

  font-size: 7px;
}


/* ---------- HOW ---------- */

body.cn-public-v3 .cn3-how {
  border-top: 1px solid #e5eae8;
  border-bottom: 1px solid #e5eae8;

  background: white !important;
}

body.cn-public-v3 .cn3-how-heading {
  max-width: 730px;

  margin-bottom: 58px;
}

body.cn-public-v3 .cn3-how-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

body.cn-public-v3 .cn3-how-grid article {
  position: relative;

  min-height: 210px;

  padding: 26px;

  border: 1px solid #e0e6e4;
  border-radius: 14px;

  background: #fafbfb;
}

body.cn-public-v3 .cn3-how-number {
  color: #5c746d;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .05em;
}

body.cn-public-v3 .cn3-how-line {
  width: 37px;
  height: 1px;

  margin: 19px 0 34px;

  background: #bac8c4;
}

body.cn-public-v3 .cn3-how-grid h3 {
  margin: 0 0 10px !important;

  color: #17363f !important;

  font-size: 17px !important;
  font-weight: 720 !important;
}

body.cn-public-v3 .cn3-how-grid p {
  margin: 0 !important;

  color: #75838a !important;

  font-size: 11px !important;
  line-height: 1.68 !important;
}


/* ----------------------------------------------------------
   PRICING INTENTIONALLY NOT OVERRIDDEN HERE.
   Keep current cards/buttons exactly as they are.
   ---------------------------------------------------------- */


/* ---------- FAQ REFRESH ---------- */

body.cn-public-v3 .faq-section {
  padding-top: 104px !important;
  padding-bottom: 104px !important;

  background: white !important;
}

body.cn-public-v3 .faq-section h2 {
  color: #073047 !important;

  font-weight: 760 !important;

  letter-spacing: -1.7px !important;
}

body.cn-public-v3 .faq-item {
  border: 1px solid #dfe6e3 !important;
  border-radius: 10px !important;

  background: white !important;

  box-shadow: none !important;
}

body.cn-public-v3 .faq-item summary {
  color: #29464f !important;

  font-weight: 650 !important;
}

body.cn-public-v3 .faq-answer {
  color: #718087 !important;

  line-height: 1.7 !important;
}


/* ---------- FINAL CTA ---------- */

body.cn-public-v3 .cn3-final {
  margin: 0 !important;

  padding: 84px 28px !important;

  background: #edf2f1 !important;
}

body.cn-public-v3 .cn3-final-inner {
  max-width: 1180px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

body.cn-public-v3 .cn3-final h2 {
  max-width: 690px;

  margin: 0 !important;

  color: #073047 !important;

  font-size: clamp(34px,4vw,48px) !important;
  line-height: 1.08 !important;

  font-weight: 760 !important;

  letter-spacing: -2px !important;
}

body.cn-public-v3 .cn3-final p {
  margin: 16px 0 0 !important;

  color: #708087 !important;

  font-size: 13px !important;
}

body.cn-public-v3 .cn3-final-button {
  min-width: 170px;
  min-height: 51px;

  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  flex: 0 0 auto;

  border-radius: 9px;

  background: #171b1d !important;
  color: white !important;

  text-decoration: none !important;

  font-size: 12px;
  font-weight: 700;
}


/* ---------- FOOTER ---------- */

body.cn-public-v3 .cn3-footer {
  margin: 0 !important;

  padding: 62px 28px 27px !important;

  border: 0 !important;
  border-top: 1px solid #e3e8e6 !important;

  background: white !important;

  color: #718087 !important;
}

body.cn-public-v3 .cn3-footer-main {
  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.5fr .65fr .8fr .8fr;

  gap: 65px;
}

body.cn-public-v3 .cn3-footer-brand p {
  max-width: 370px;

  margin: 18px 0 0;

  color: #78868c;

  font-size: 11px;
  line-height: 1.7;
}

body.cn-public-v3 .cn3-footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}

body.cn-public-v3 .cn3-footer-column strong {
  margin-bottom: 5px;

  color: #344f57;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .07em;

  text-transform: uppercase;
}

body.cn-public-v3 .cn3-footer-column a {
  color: #758389 !important;

  text-decoration: none !important;

  font-size: 10px;
}

body.cn-public-v3 .cn3-footer-column a:hover {
  color: #17363f !important;
}

body.cn-public-v3 .cn3-footer-bottom {
  max-width: 1180px;

  margin: 43px auto 0;

  padding-top: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid #e8ecea;

  color: #929da0;

  font-size: 9px;
}


/* ---------- TABLET ---------- */

@media (max-width: 1020px) {

  body.cn-public-v3 .cn3-hero-inner {
    grid-template-columns: 1fr;

    gap: 62px;
  }

  body.cn-public-v3 .cn3-product-stage {
    max-width: 700px;
  }

  body.cn-public-v3 .cn3-section-head {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  body.cn-public-v3 .cn3-feature-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  body.cn-public-v3 .cn3-footer-main {
    grid-template-columns:
      1.4fr 1fr 1fr;

    gap: 42px;
  }

  body.cn-public-v3 .cn3-footer-brand {
    grid-column: 1 / -1;
  }

}


/* ---------- MOBILE ---------- */

@media (max-width: 720px) {

  body.cn-public-v3 .cn3-nav-inner {
    min-height: 66px;

    padding: 0 17px;
  }

  body.cn-public-v3 .cn3-nav-links {
    display: none;
  }

  body.cn-public-v3 .cn3-brand {
    font-size: 18px;
  }

  body.cn-public-v3 .cn3-brand img {
    width: 29px;
    height: 33px;
  }

  body.cn-public-v3 .cn3-login {
    display: none;
  }

  body.cn-public-v3 .cn3-nav-primary {
    min-height: 38px;

    padding: 0 12px;

    font-size: 11px;
  }

  body.cn-public-v3 .cn3-hero {
    padding: 64px 18px 76px !important;
  }

  body.cn-public-v3 .cn3-hero-inner {
    gap: 47px;
  }

  body.cn-public-v3 .cn3-hero h1 {
    font-size: 44px !important;

    letter-spacing: -2.2px !important;
  }

  body.cn-public-v3 .cn3-hero-lead {
    font-size: 15px !important;
  }

  body.cn-public-v3 .cn3-hero-actions {
    display: grid;

    grid-template-columns: 1fr;
  }

  body.cn-public-v3 .cn3-primary,
  body.cn-public-v3 .cn3-secondary {
    width: 100%;

    box-sizing: border-box;
  }

  body.cn-public-v3 .cn3-hero-trust {
    display: grid;

    grid-template-columns: 1fr;
  }

  body.cn-public-v3 .cn3-floating-card {
    display: none;
  }

  body.cn-public-v3 .cn3-product-body {
    grid-template-columns: 1fr;

    min-height: 0;
  }

  body.cn-public-v3 .cn3-product-sidebar {
    display: none;
  }

  body.cn-public-v3 .cn3-note-preview {
    padding: 23px 20px;
  }

  body.cn-public-v3 .cn3-assurance {
    padding: 0 18px !important;
  }

  body.cn-public-v3 .cn3-assurance-inner {
    padding: 25px 0;

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;
  }

  body.cn-public-v3
  .cn3-assurance-inner > i {
    width: 100%;
    height: 1px;
  }

  body.cn-public-v3 .cn3-section {
    padding: 78px 18px !important;
  }

  body.cn-public-v3 .cn3-section-head {
    margin-bottom: 35px;
  }

  body.cn-public-v3 .cn3-section-head h2,
  body.cn-public-v3 .cn3-how-heading h2 {
    font-size: 35px !important;

    letter-spacing: -1.5px !important;
  }

  body.cn-public-v3 .cn3-feature-grid {
    grid-template-columns: 1fr;
  }

  body.cn-public-v3
  .cn3-feature-card.cn3-feature-large {
    grid-column: auto;
  }

  body.cn-public-v3 .cn3-history-preview {
    grid-template-columns: 1fr;
  }

  body.cn-public-v3 .cn3-how-grid {
    grid-template-columns: 1fr;
  }

  body.cn-public-v3 .cn3-final {
    padding: 65px 18px !important;
  }

  body.cn-public-v3 .cn3-final-inner {
    align-items: flex-start;

    flex-direction: column;

    gap: 28px;
  }

  body.cn-public-v3 .cn3-final-button {
    width: 100%;

    box-sizing: border-box;
  }

  body.cn-public-v3 .cn3-footer {
    padding: 48px 18px 24px !important;
  }

  body.cn-public-v3 .cn3-footer-main {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  body.cn-public-v3 .cn3-footer-brand {
    grid-column: auto;
  }

  body.cn-public-v3 .cn3-footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;
  }

}



/* BEGIN CLARITENOTE ORIGINAL WORKFLOW V3 */


/* ==========================================================
   CUSTOM HERO IDENTIFIER
   ========================================================== */

body.cn-public-v3
.cn3-eyebrow.cn3-path-identifier {
  width:
    min(100%, 510px);

  margin-bottom:
    25px;

  padding:
    0;

  display:
    grid;

  grid-template-columns:
    42px 48px minmax(0, 1fr);

  align-items:
    center;

  gap:
    12px;

  border:
    0;

  border-radius:
    0;

  background:
    transparent;

  color:
    inherit;

  text-transform:
    none;
}


body.cn-public-v3
.cn3-path-mark {
  width:
    42px;

  height:
    42px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid #d7e2de;

  border-radius:
    13px;

  background:
    #ffffff;

  box-shadow:
    0 10px 25px rgba(22, 39, 44, .07);
}


body.cn-public-v3
.cn3-path-mark img {
  width:
    22px;

  height:
    22px;

  display:
    block;

  object-fit:
    contain;
}


body.cn-public-v3
.cn3-path-line {
  width:
    48px;

  height:
    1px;

  display:
    block;

  background:
    linear-gradient(
      90deg,
      #d5e1dd 0%,
      #6d8b83 100%
    );
}


body.cn-public-v3
.cn3-path-copy {
  display:
    flex;

  flex-direction:
    column;

  gap:
    3px;
}


body.cn-public-v3
.cn3-path-copy small {
  color:
    #718589;

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .13em;

  text-transform:
    uppercase;
}


body.cn-public-v3
.cn3-path-copy strong {
  color:
    #24454e;

  font-size:
    12px;

  line-height:
    1.35;

  font-weight:
    720;

  letter-spacing:
    -.015em;
}


/* ==========================================================
   ORIGINAL BOARD
   ========================================================== */

body.cn-public-v3
.cn3-product-stage.cn3-original-stage {
  position:
    relative;

  width:
    100%;

  padding:
    0;

  overflow:
    visible;
}


body.cn-public-v3
.cn3-original-board {
  width:
    100%;

  overflow:
    hidden;

  border:
    1px solid #d8e3df;

  border-radius:
    30px;

  background:
    #f9fbfa;

  box-shadow:
    0 40px 90px rgba(17, 34, 40, .13);
}


body.cn-public-v3
.cn3-original-board-header {
  min-height:
    76px;

  padding:
    0 28px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    18px;

  border-bottom:
    1px solid #e1eae7;

  background:
    rgba(255, 255, 255, .96);
}


body.cn-public-v3
.cn3-original-board-brand {
  display:
    flex;

  align-items:
    center;

  gap:
    13px;
}


body.cn-public-v3
.cn3-original-board-brand > span:last-child {
  display:
    flex;

  flex-direction:
    column;

  gap:
    2px;
}


body.cn-public-v3
.cn3-original-board-brand small {
  color:
    #819196;

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .13em;
}


body.cn-public-v3
.cn3-original-board-brand strong {
  color:
    #1b3b45;

  font-size:
    14px;

  font-weight:
    760;
}


body.cn-public-v3
.cn3-original-board-symbol {
  position:
    relative;

  width:
    17px;

  height:
    17px;

  display:
    block;

  border-radius:
    5px 10px 5px 10px;

  background:
    #17363f;

  transform:
    rotate(45deg);
}


body.cn-public-v3
.cn3-original-board-symbol::after {
  content:
    "";

  position:
    absolute;

  top:
    8px;

  left:
    14px;

  width:
    27px;

  height:
    1px;

  background:
    #a0b6b0;
}


body.cn-public-v3
.cn3-original-control-state {
  padding:
    8px 12px;

  border:
    1px solid #d7e2de;

  border-radius:
    999px;

  background:
    #eef4f2;

  color:
    #547069;

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .075em;

  text-transform:
    uppercase;
}


/* ==========================================================
   ROUTE AREA
   ========================================================== */

body.cn-public-v3
.cn3-original-route {
  position:
    relative;

  min-height:
    515px;

  padding:
    53px 34px 45px;

  display:
    grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  align-items:
    center;

  gap:
    24px;

  background:
    radial-gradient(
      circle at 50% 47%,
      rgba(225, 236, 232, .78) 0,
      rgba(225, 236, 232, .78) 120px,
      transparent 121px
    ),
    linear-gradient(
      180deg,
      #fbfcfc 0%,
      #f4f8f6 100%
    );
}


body.cn-public-v3
.cn3-route-line {
  position:
    absolute;

  z-index:
    0;

  top:
    50%;

  left:
    17%;

  right:
    17%;

  height:
    2px;

  background:
    repeating-linear-gradient(
      90deg,
      #9cb4ad 0,
      #9cb4ad 9px,
      transparent 9px,
      transparent 17px
    );
}


/* ==========================================================
   ROUTE STATIONS
   ========================================================== */

body.cn-public-v3
.cn3-route-station {
  position:
    relative;

  z-index:
    2;

  min-height:
    335px;

  padding:
    24px 22px;

  border:
    1px solid #dce6e3;

  border-radius:
    24px;

  background:
    rgba(255, 255, 255, .98);

  box-shadow:
    0 18px 45px rgba(18, 36, 42, .08);
}


body.cn-public-v3
.cn3-route-capture {
  transform:
    translateY(28px);
}


body.cn-public-v3
.cn3-route-context {
  min-height:
    390px;

  transform:
    translateY(-21px);

  background:
    linear-gradient(
      180deg,
      #f2f7f5 0%,
      #ffffff 100%
    );
}


body.cn-public-v3
.cn3-route-note {
  transform:
    translateY(25px);
}


body.cn-public-v3
.cn3-route-number {
  position:
    absolute;

  top:
    -16px;

  left:
    22px;

  width:
    36px;

  height:
    36px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid #d5e1dd;

  border-radius:
    11px;

  background:
    white;

  color:
    #4f7168;

  font-size:
    10px;

  font-weight:
    800;

  box-shadow:
    0 9px 22px rgba(20, 39, 45, .08);
}


body.cn-public-v3
.cn3-route-kicker {
  display:
    block;

  margin:
    13px 0 10px;

  color:
    #74878b;

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .13em;
}


body.cn-public-v3
.cn3-route-station h3 {
  margin:
    0 0 10px;

  color:
    #173740;

  font-size:
    20px;

  line-height:
    1.1;

  font-weight:
    760;

  letter-spacing:
    -.035em;
}


body.cn-public-v3
.cn3-route-station p {
  margin:
    0;

  color:
    #617279;

  font-size:
    11px;

  line-height:
    1.55;
}


/* ==========================================================
   SESSION SIGNAL
   ========================================================== */

body.cn-public-v3
.cn3-route-wave {
  height:
    70px;

  margin:
    22px 0 17px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    4px;
}


body.cn-public-v3
.cn3-route-wave i {
  width:
    7px;

  display:
    block;

  border-radius:
    999px;

  background:
    linear-gradient(
      180deg,
      #a9c1ba 0%,
      #456e64 100%
    );
}


body.cn-public-v3
.cn3-route-wave i:nth-child(1) {
  height: 18px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(2) {
  height: 39px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(3) {
  height: 24px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(4) {
  height: 56px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(5) {
  height: 30px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(6) {
  height: 65px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(7) {
  height: 41px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(8) {
  height: 58px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(9) {
  height: 27px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(10) {
  height: 49px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(11) {
  height: 23px;
}

body.cn-public-v3
.cn3-route-wave i:nth-child(12) {
  height: 36px;
}


body.cn-public-v3
.cn3-route-options {
  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    6px;
}


body.cn-public-v3
.cn3-route-options span {
  padding:
    6px 8px;

  border:
    1px solid #dce6e3;

  border-radius:
    8px;

  background:
    #f5f9f7;

  color:
    #59746e;

  font-size:
    8px;

  font-weight:
    730;
}


/* ==========================================================
   CONTEXT ORBIT
   ========================================================== */

body.cn-public-v3
.cn3-context-orbit {
  position:
    relative;

  height:
    195px;

  margin-top:
    15px;
}


body.cn-public-v3
.cn3-context-center {
  position:
    absolute;

  z-index:
    4;

  top:
    72px;

  left:
    calc(50% - 25px);

  width:
    50px;

  height:
    50px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    8px solid #e8f0ed;

  border-radius:
    50%;

  background:
    #173740;

  color:
    #ffffff;

  font-size:
    13px;

  font-weight:
    800;

  box-shadow:
    0 11px 28px rgba(19, 50, 58, .18);
}


body.cn-public-v3
.cn3-context-point {
  position:
    absolute;

  z-index:
    3;

  padding:
    7px 9px;

  border:
    1px solid #dae5e1;

  border-radius:
    9px;

  background:
    #ffffff;

  color:
    #536d68;

  font-size:
    7px;

  font-weight:
    730;

  white-space:
    nowrap;

  box-shadow:
    0 8px 19px rgba(23, 41, 46, .05);
}


body.cn-public-v3
.cn3-context-one {
  top:
    5px;

  left:
    0;
}


body.cn-public-v3
.cn3-context-two {
  top:
    3px;

  right:
    0;
}


body.cn-public-v3
.cn3-context-three {
  top:
    84px;

  left:
    0;
}


body.cn-public-v3
.cn3-context-four {
  top:
    87px;

  right:
    0;
}


body.cn-public-v3
.cn3-context-five {
  bottom:
    1px;

  left:
    calc(50% - 29px);
}


body.cn-public-v3
.cn3-context-orbit::before,
body.cn-public-v3
.cn3-context-orbit::after {
  content:
    "";

  position:
    absolute;

  top:
    95px;

  left:
    20px;

  right:
    20px;

  height:
    1px;

  background:
    #b8cac5;
}


body.cn-public-v3
.cn3-context-orbit::after {
  top:
    22px;

  left:
    calc(50% - 1px);

  right:
    auto;

  width:
    1px;

  height:
    151px;
}


/* ==========================================================
   CLINICAL DRAFT
   ========================================================== */

body.cn-public-v3
.cn3-route-note-heading {
  margin:
    12px 0 15px;

  display:
    flex;

  align-items:
    flex-end;

  justify-content:
    space-between;

  gap:
    10px;
}


body.cn-public-v3
.cn3-route-note-heading > span:first-child {
  display:
    flex;

  flex-direction:
    column;

  gap:
    2px;
}


body.cn-public-v3
.cn3-route-note-heading small {
  color:
    #829196;

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    .13em;
}


body.cn-public-v3
.cn3-route-note-heading strong {
  color:
    #173740;

  font-size:
    20px;

  font-weight:
    760;

  letter-spacing:
    -.04em;
}


body.cn-public-v3
.cn3-route-review {
  padding:
    6px 8px;

  border:
    1px solid #d6e2de;

  border-radius:
    999px;

  background:
    #edf4f1;

  color:
    #56736c;

  font-size:
    7px;

  font-weight:
    800;
}


body.cn-public-v3
.cn3-route-note-section {
  padding:
    12px 0;

  border-top:
    1px solid #e4ece9;
}


body.cn-public-v3
.cn3-route-note-section b {
  display:
    block;

  margin-bottom:
    9px;

  color:
    #1d3b44;

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    .09em;
}


body.cn-public-v3
.cn3-route-note-section > i {
  display:
    block;

  width:
    86%;

  height:
    6px;

  margin-top:
    7px;

  border-radius:
    999px;

  background:
    #e1eae7;
}


body.cn-public-v3
.cn3-route-note-section i.long {
  width:
    100%;
}


body.cn-public-v3
.cn3-route-note-section i.medium {
  width:
    72%;
}


body.cn-public-v3
.cn3-route-note-section > div {
  margin-top:
    8px;

  display:
    flex;

  align-items:
    center;

  gap:
    8px;
}


body.cn-public-v3
.cn3-route-note-section > div span {
  width:
    21px;

  height:
    21px;

  flex:
    0 0 21px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    7px;

  background:
    #edf3f1;

  color:
    #56736c;

  font-size:
    7px;

  font-weight:
    800;
}


body.cn-public-v3
.cn3-route-note-section > div i {
  display:
    block;

  width:
    74%;

  height:
    6px;

  border-radius:
    999px;

  background:
    #e1eae7;
}


body.cn-public-v3
.cn3-route-note-section > div i.long {
  width:
    100%;
}


/* ==========================================================
   APPROVAL FOOTER
   ========================================================== */

body.cn-public-v3
.cn3-original-board-footer {
  min-height:
    92px;

  padding:
    18px 26px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  border-top:
    1px solid #dfe8e5;

  background:
    #ffffff;
}


body.cn-public-v3
.cn3-original-approval {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;
}


body.cn-public-v3
.cn3-original-approval > span:last-child {
  display:
    flex;

  flex-direction:
    column;

  gap:
    2px;
}


body.cn-public-v3
.cn3-original-approval-mark {
  width:
    35px;

  height:
    35px;

  flex:
    0 0 35px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    12px;

  background:
    #e9f2ee;

  color:
    #446d62;

  font-size:
    14px;

  font-weight:
    800;
}


body.cn-public-v3
.cn3-original-approval strong {
  color:
    #1d3b44;

  font-size:
    11px;

  font-weight:
    760;
}


body.cn-public-v3
.cn3-original-approval small {
  max-width:
    470px;

  color:
    #75868b;

  font-size:
    8px;

  line-height:
    1.45;
}


body.cn-public-v3
.cn3-original-board-footer button {
  min-width:
    170px;

  padding:
    12px 16px;

  border:
    0;

  border-radius:
    11px;

  background:
    #171b1d;

  color:
    #ffffff;

  font-family:
    inherit;

  font-size:
    9px;

  font-weight:
    760;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 980px) {

  body.cn-public-v3
  .cn3-original-route {
    grid-template-columns:
      1fr;

    gap:
      20px;
  }


  body.cn-public-v3
  .cn3-route-line {
    display:
      none;
  }


  body.cn-public-v3
  .cn3-route-station,
  body.cn-public-v3
  .cn3-route-capture,
  body.cn-public-v3
  .cn3-route-context,
  body.cn-public-v3
  .cn3-route-note {
    min-height:
      0;

    transform:
      none;
  }


  body.cn-public-v3
  .cn3-context-orbit {
    max-width:
      320px;

    margin-left:
      auto;

    margin-right:
      auto;
  }

}


@media (max-width: 680px) {

  body.cn-public-v3
  .cn3-eyebrow.cn3-path-identifier {
    grid-template-columns:
      42px minmax(0, 1fr);
  }


  body.cn-public-v3
  .cn3-path-line {
    display:
      none;
  }


  body.cn-public-v3
  .cn3-original-board-header {
    padding:
      0 18px;
  }


  body.cn-public-v3
  .cn3-original-control-state {
    display:
      none;
  }


  body.cn-public-v3
  .cn3-original-route {
    padding:
      36px 17px 25px;
  }


  body.cn-public-v3
  .cn3-original-board-footer {
    padding:
      18px;

    flex-direction:
      column;

    align-items:
      stretch;
  }


  body.cn-public-v3
  .cn3-original-board-footer button {
    width:
      100%;
  }

}


/* END CLARITENOTE ORIGINAL WORKFLOW V3 */




/* BEGIN CLARITENOTE NOTE SHOWCASE V4 */


/* ==========================================================
   SIMPLE HERO KICKER
   ========================================================== */

body.cn-public-v3
.cn3-note-kicker {
  width:
    fit-content;

  margin-bottom:
    25px;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    11px;

  color:
    #48646a;
}


body.cn-public-v3
.cn3-note-kicker > span {
  width:
    28px;

  height:
    1px;

  display:
    block;

  background:
    #738f88;
}


body.cn-public-v3
.cn3-note-kicker strong {
  font-size:
    11px;

  font-weight:
    740;

  letter-spacing:
    .01em;
}


/* ==========================================================
   NOTE SHOWCASE
   ========================================================== */

body.cn-public-v3
.cn3-product-stage.cn3-note-showcase-stage {
  position:
    relative;

  width:
    100%;

  padding:
    0;
}


body.cn-public-v3
.cn3-note-showcase {
  width:
    100%;

  overflow:
    hidden;

  border:
    1px solid #d9e3e0;

  border-radius:
    28px;

  background:
    #ffffff;

  box-shadow:
    0 38px 90px rgba(18, 34, 40, .13);
}


/* ---------- TOP ---------- */

body.cn-public-v3
.cn3-note-showcase-top {
  min-height:
    78px;

  padding:
    0 28px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  border-bottom:
    1px solid #e3eae8;

  background:
    #fafcfb;
}


body.cn-public-v3
.cn3-note-showcase-top > div {
  display:
    flex;

  flex-direction:
    column;

  gap:
    2px;
}


body.cn-public-v3
.cn3-showcase-label {
  color:
    #819095;

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .13em;
}


body.cn-public-v3
.cn3-note-showcase-top strong {
  color:
    #173740;

  font-size:
    14px;

  font-weight:
    760;
}


body.cn-public-v3
.cn3-showcase-status {
  padding:
    8px 12px;

  border:
    1px solid #d6e2de;

  border-radius:
    999px;

  background:
    #edf4f1;

  color:
    #55736c;

  font-size:
    9px;

  font-weight:
    780;
}


/* ==========================================================
   BODY
   ========================================================== */

body.cn-public-v3
.cn3-note-showcase-body {
  display:
    grid;

  grid-template-columns:
    210px minmax(0, 1fr);

  min-height:
    510px;
}


/* ---------- CONTEXT ---------- */

body.cn-public-v3
.cn3-showcase-context {
  padding:
    28px 20px;

  border-right:
    1px solid #e2eae7;

  background:
    linear-gradient(
      180deg,
      #f6f9f8 0%,
      #f1f6f4 100%
    );
}


body.cn-public-v3
.cn3-showcase-client {
  margin:
    18px 0 24px;

  display:
    flex;

  align-items:
    center;

  gap:
    10px;
}


body.cn-public-v3
.cn3-showcase-client > span {
  width:
    36px;

  height:
    36px;

  flex:
    0 0 36px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    12px;

  background:
    #173740;

  color:
    #ffffff;

  font-size:
    10px;

  font-weight:
    800;
}


body.cn-public-v3
.cn3-showcase-client div {
  display:
    flex;

  flex-direction:
    column;
}


body.cn-public-v3
.cn3-showcase-client strong {
  color:
    #23414a;

  font-size:
    10px;

  font-weight:
    750;
}


body.cn-public-v3
.cn3-showcase-client small {
  margin-top:
    2px;

  color:
    #839196;

  font-size:
    8px;
}


body.cn-public-v3
.cn3-showcase-context-block {
  margin-bottom:
    16px;

  padding:
    13px 13px;

  border:
    1px solid #dae5e1;

  border-radius:
    13px;

  background:
    rgba(255,255,255,.84);
}


body.cn-public-v3
.cn3-showcase-context-block small {
  display:
    block;

  margin-bottom:
    6px;

  color:
    #6e8580;

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    .09em;
}


body.cn-public-v3
.cn3-showcase-context-block p {
  margin:
    0;

  color:
    #60737a;

  font-size:
    9px;

  line-height:
    1.55;
}


body.cn-public-v3
.cn3-showcase-context-tags {
  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    6px;
}


body.cn-public-v3
.cn3-showcase-context-tags span {
  padding:
    6px 8px;

  border:
    1px solid #d9e4e0;

  border-radius:
    8px;

  background:
    #ffffff;

  color:
    #58736c;

  font-size:
    7px;

  font-weight:
    720;
}


/* ==========================================================
   NOTE DOCUMENT
   ========================================================== */

body.cn-public-v3
.cn3-showcase-note {
  padding:
    31px 34px 25px;

  background:
    #ffffff;
}


body.cn-public-v3
.cn3-showcase-note-heading {
  padding-bottom:
    20px;

  display:
    flex;

  align-items:
    flex-end;

  justify-content:
    space-between;

  gap:
    15px;

  border-bottom:
    1px solid #dfe7e5;
}


body.cn-public-v3
.cn3-showcase-note-heading > div span {
  display:
    block;

  margin-bottom:
    5px;

  color:
    #7d8d92;

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .12em;
}


body.cn-public-v3
.cn3-showcase-note-heading h3 {
  margin:
    0;

  color:
    #073047;

  font-size:
    27px;

  line-height:
    1;

  font-weight:
    780;

  letter-spacing:
    -.04em;
}


body.cn-public-v3
.cn3-showcase-draft {
  padding:
    7px 10px;

  border:
    1px solid #d6e2de;

  border-radius:
    999px;

  background:
    #f1f6f4;

  color:
    #56736d;

  font-size:
    8px;

  font-weight:
    780;
}


/* ---------- NOTE SECTIONS ---------- */

body.cn-public-v3
.cn3-showcase-section {
  padding:
    20px 0;

  border-bottom:
    1px solid #edf1f0;
}


body.cn-public-v3
.cn3-showcase-section > strong {
  display:
    block;

  margin-bottom:
    8px;

  color:
    #183942;

  font-size:
    8px;

  font-weight:
    820;

  letter-spacing:
    .11em;
}


body.cn-public-v3
.cn3-showcase-section > p {
  max-width:
    630px;

  margin:
    0;

  color:
    #556970;

  font-size:
    10px;

  line-height:
    1.7;
}


/* ---------- PLAN ---------- */

body.cn-public-v3
.cn3-showcase-plan-row {
  margin-top:
    8px;

  display:
    flex;

  align-items:
    flex-start;

  gap:
    9px;
}


body.cn-public-v3
.cn3-showcase-plan-row span {
  width:
    23px;

  height:
    23px;

  flex:
    0 0 23px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    8px;

  background:
    #edf4f1;

  color:
    #56736d;

  font-size:
    8px;

  font-weight:
    800;
}


body.cn-public-v3
.cn3-showcase-plan-row p {
  margin:
    2px 0 0;

  color:
    #586b72;

  font-size:
    9px;

  line-height:
    1.5;
}


/* ==========================================================
   NOTE FOOTER
   ========================================================== */

body.cn-public-v3
.cn3-showcase-note-footer {
  padding-top:
    20px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    18px;
}


body.cn-public-v3
.cn3-showcase-note-footer > span {
  max-width:
    360px;

  color:
    #879398;

  font-size:
    8px;

  line-height:
    1.45;
}


body.cn-public-v3
.cn3-showcase-note-footer button {
  min-width:
    126px;

  padding:
    11px 15px;

  border:
    0;

  border-radius:
    10px;

  background:
    #171b1d;

  color:
    #ffffff;

  font-family:
    inherit;

  font-size:
    9px;

  font-weight:
    760;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 820px) {

  body.cn-public-v3
  .cn3-note-showcase-body {
    grid-template-columns:
      1fr;
  }


  body.cn-public-v3
  .cn3-showcase-context {
    border-right:
      0;

    border-bottom:
      1px solid #e2eae7;
  }

}


@media (max-width: 600px) {

  body.cn-public-v3
  .cn3-note-showcase-top {
    padding:
      0 18px;
  }


  body.cn-public-v3
  .cn3-showcase-status {
    display:
      none;
  }


  body.cn-public-v3
  .cn3-showcase-note {
    padding:
      25px 20px 21px;
  }


  body.cn-public-v3
  .cn3-showcase-note-footer {
    flex-direction:
      column;

    align-items:
      stretch;
  }


  body.cn-public-v3
  .cn3-showcase-note-footer button {
    width:
      100%;
  }

}


/* END CLARITENOTE NOTE SHOWCASE V4 */


/* END CLARITENOTE LANDING REBUILD V2 */

/* ==========================================================
   CLARITENOTE MOBILE DESKTOP-PRESERVING OVERRIDE V1
   Keep desktop visual identity while fitting phone screens
   ========================================================== */

@media (max-width: 720px) {

  html,
  body {
    overflow-x: hidden !important;
  }

  /* ---------- NAV ---------- */

  body.cn-public-v3 .cn3-nav-inner {
    min-height: 68px !important;
    padding: 0 16px !important;
    gap: 12px !important;
  }

  body.cn-public-v3 .cn3-brand {
    font-size: 18px !important;
    flex-shrink: 0;
  }

  body.cn-public-v3 .cn3-brand img {
    width: 29px !important;
    height: 33px !important;
    object-fit: contain;
  }

  /* Desktop center links cannot physically fit on a phone.
     Keep primary account actions instead of shrinking everything
     into unreadable text. */

  body.cn-public-v3 .cn3-nav-links {
    display: none !important;
  }

  body.cn-public-v3 .cn3-nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }

  body.cn-public-v3 .cn3-login {
    display: inline-flex !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  body.cn-public-v3 .cn3-nav-primary {
    display: inline-flex !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }


  /* ---------- HERO ---------- */

  body.cn-public-v3 .cn3-hero {
    padding: 54px 18px 58px !important;
  }

  body.cn-public-v3 .cn3-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
    width: 100% !important;
  }

  body.cn-public-v3 .cn3-hero-copy {
    width: 100% !important;
    max-width: none !important;
  }

  body.cn-public-v3 .cn3-note-kicker {
    margin-bottom: 22px !important;
    max-width: 100% !important;
  }

  body.cn-public-v3 .cn3-hero h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: .98 !important;
    letter-spacing: -2.4px !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.cn-public-v3 .cn3-hero h1 span {
    display: block;
  }

  body.cn-public-v3 .cn3-hero-lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }


  /* ---------- HERO BUTTONS ---------- */

  body.cn-public-v3 .cn3-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.cn-public-v3 .cn3-primary,
  body.cn-public-v3 .cn3-secondary {
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }


  /* ---------- TRUST ITEMS ---------- */

  body.cn-public-v3 .cn3-hero-trust {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px 14px !important;
    width: 100% !important;
  }


  /* ---------- DESKTOP NOTE MOCKUP ----------
     Preserve the complete desktop mockup.
     Scale it instead of deleting its components.
     ----------------------------------------- */

  body.cn-public-v3 .cn3-product-stage,
  body.cn-public-v3 .cn3-note-showcase-stage {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  body.cn-public-v3 .cn3-note-showcase {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.cn-public-v3 .cn3-note-showcase-top {
    display: flex !important;
    padding: 0 16px !important;
    min-height: 70px !important;
  }

  body.cn-public-v3 .cn3-showcase-status {
    display: inline-flex !important;
    font-size: 8px !important;
    padding: 7px 9px !important;
    white-space: nowrap !important;
  }

  body.cn-public-v3 .cn3-note-showcase-body {
    display: grid !important;
    grid-template-columns: minmax(112px, 32%) minmax(0, 68%) !important;
    width: 100% !important;
    min-height: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-context {
    display: block !important;
    min-width: 0 !important;
    padding: 20px 12px !important;
    border-right: 1px solid #e2eae7 !important;
    border-bottom: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-client {
    min-width: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-context-block {
    padding: 12px 9px !important;
    min-width: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-context-block p,
  body.cn-public-v3 .cn3-showcase-client,
  body.cn-public-v3 .cn3-showcase-context-tags {
    font-size: 8px !important;
    line-height: 1.5 !important;
  }

  body.cn-public-v3 .cn3-showcase-context-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  body.cn-public-v3 .cn3-showcase-note {
    display: block !important;
    min-width: 0 !important;
    padding: 20px 14px !important;
  }

  body.cn-public-v3 .cn3-showcase-note-heading {
    min-width: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-note-heading h3 {
    font-size: 21px !important;
    line-height: 1.05 !important;
  }

  body.cn-public-v3 .cn3-showcase-draft {
    display: inline-flex !important;
    font-size: 7px !important;
    padding: 5px 7px !important;
  }

  body.cn-public-v3 .cn3-showcase-section {
    min-width: 0 !important;
  }

  body.cn-public-v3 .cn3-showcase-section p,
  body.cn-public-v3 .cn3-showcase-plan-row {
    font-size: 8.5px !important;
    line-height: 1.55 !important;
  }

  body.cn-public-v3 .cn3-showcase-note-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
  }

  body.cn-public-v3 .cn3-showcase-note-footer button {
    width: auto !important;
    font-size: 7px !important;
    padding: 7px 8px !important;
  }


  /* ---------- ASSURANCE ---------- */

  body.cn-public-v3 .cn3-assurance {
    padding: 0 18px !important;
  }

  body.cn-public-v3 .cn3-assurance-inner {
    width: 100% !important;
  }


  /* ---------- SECTIONS ---------- */

  body.cn-public-v3 .cn3-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.cn-public-v3 .cn3-section-inner {
    width: 100% !important;
  }

  body.cn-public-v3 .cn3-section-head {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.cn-public-v3 .cn3-section-head h2,
  body.cn-public-v3 .cn3-how-heading h2,
  body.cn-public-v3 .cn3-final h2 {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.04 !important;
    letter-spacing: -1.5px !important;
  }


  /* ---------- FEATURES ---------- */

  body.cn-public-v3 .cn3-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.cn-public-v3 .cn3-feature-card,
  body.cn-public-v3 .cn3-feature-large {
    grid-column: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ---------- HOW IT WORKS ---------- */

  body.cn-public-v3 .cn3-how-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }


  /* ---------- FINAL CTA ---------- */

  body.cn-public-v3 .cn3-final {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.cn-public-v3 .cn3-final-inner {
    width: 100% !important;
  }

  body.cn-public-v3 .cn3-final-button {
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }


  /* ---------- FOOTER ---------- */

  body.cn-public-v3 .cn3-footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 22px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.cn-public-v3 .cn3-footer-brand {
    grid-column: 1 / -1 !important;
  }

  body.cn-public-v3 .cn3-footer-bottom {
    padding-left: 18px !important;
    padding-right: 18px !important;
    flex-wrap: wrap !important;
    gap: 10px 18px !important;
  }
}


/* Extra-small phones */

@media (max-width: 390px) {

  body.cn-public-v3 .cn3-hero h1 {
    font-size: 39px !important;
  }

  body.cn-public-v3 .cn3-brand {
    font-size: 16px !important;
  }

  body.cn-public-v3 .cn3-login {
    font-size: 11px !important;
  }

  body.cn-public-v3 .cn3-nav-primary {
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  body.cn-public-v3 .cn3-note-showcase-body {
    grid-template-columns: 105px minmax(0, 1fr) !important;
  }

  body.cn-public-v3 .cn3-showcase-context {
    padding: 17px 9px !important;
  }

  body.cn-public-v3 .cn3-showcase-note {
    padding: 18px 11px !important;
  }
}

/* END CLARITENOTE MOBILE DESKTOP-PRESERVING OVERRIDE V1 */
