/* ==========================================================================
   ZenZonApp — marketing site
   Design tokens and shared components.
   Palette continues the app's violet so the jump to app.zenzonapp.com
   reads as one product. Jade is reserved for verified/encrypted/live
   states only, never decoration.
   ========================================================================== */

:root {
  /* Colour */
  --ink:          #1B1428;
  --ink-soft:     #524A63;
  --ink-faint:    #857C97;
  --violet:       #5B3FA8;
  --violet-deep:  #2E1F5E;
  --violet-wash:  #EFEBF8;
  --jade:         #17A08A;
  --paper:        #F7F6FA;
  --white:        #FFFFFF;
  --rule:         #DDD8E8;
  --rule-dark:    #46396B;

  /* Type */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale — 1.25 minor third, capped for long-form legibility */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   1.25rem;
  --t-lg:   1.5rem;
  --t-xl:   2rem;
  --t-2xl:  2.75rem;
  --t-3xl:  3.75rem;

  /* Space */
  --gutter: 1.5rem;
  --measure: 62ch;
  --max: 1200px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; max-width: var(--measure); }

a { color: var(--violet); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--violet-deep); }

:focus-visible {
  outline: 3px solid var(--jade);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.band--dark {
  background: var(--violet-deep);
  color: #E7E2F5;
}
.band--dark h1, .band--dark h2, .band--dark h3 { color: var(--white); }
.band--dark a { color: #C9BCF2; }

.band--wash { background: var(--violet-wash); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip:focus { left: 0; }

/* Section heading: a ruled caption line, echoing a chart section divider.
   The rule carries the structure; no all-caps eyebrow labels. */
.section-head {
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  margin-bottom: 2.5rem;
}
.band--dark .section-head { border-top-color: var(--rule-dark); }
.section-head h2 { font-size: clamp(var(--t-xl), 4vw, var(--t-2xl)); }
.section-head p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: var(--t-md);
}
.band--dark .section-head p { color: #B9AEDC; }

/* Page-opening heading: no rule above it, since nothing precedes it */
.section-head--lead { border-top: 0; padding-top: 0; }
.section-head--lead h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.025em;
}
.section-head--lead p { max-width: 56ch; }

.btn-row--flush { margin-top: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 1;
  padding: 0.9375rem 1.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary { background: var(--violet); color: var(--white); }
.btn--primary:hover { background: var(--violet-deep); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.band--dark .btn--primary { background: var(--white); color: var(--violet-deep); }
.band--dark .btn--primary:hover { background: #E7E2F5; color: var(--violet-deep); }
.band--dark .btn--ghost { color: var(--white); border-color: var(--rule-dark); }
.band--dark .btn--ghost:hover { border-color: #C9BCF2; color: #C9BCF2; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}

.wordmark {
  font-family: var(--display);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.wordmark:hover { color: var(--violet); }

.wordmark__glyph {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--violet);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav a {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--violet); }

.nav__divider {
  width: 1px;
  height: 22px;
  background: var(--rule);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: var(--t-sm);
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); }
  .nav .btn { margin-top: 1rem; text-align: center; }
  .nav__divider { display: none; }
}

/* --------------------------------------------------------------------------
   Hero — the day sheet is the lead visual
   -------------------------------------------------------------------------- */

.hero { padding-block: clamp(3rem, 7vw, 5.5rem); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.375rem, 5.5vw, var(--t-3xl));
  letter-spacing: -0.025em;
}

.hero__lede {
  font-size: var(--t-md);
  color: var(--ink-soft);
  margin-top: 1.5rem;
  max-width: 46ch;
}

/* Residency note reads as a fact line under the fold, not a badge pill */
.residency {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  max-width: 46ch;
}
.residency__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
  flex-shrink: 0;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Day sheet
   -------------------------------------------------------------------------- */

.daysheet {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(27, 20, 40, 0.04), 0 12px 32px -12px rgba(46, 31, 94, 0.18);
}

.daysheet__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  background: var(--violet-deep);
  color: var(--white);
}
.daysheet__date { font-family: var(--display); font-size: var(--t-base); font-weight: 500; }
.daysheet__meta { font-size: var(--t-xs); color: #B9AEDC; font-variant-numeric: tabular-nums; }

.daysheet__rows { list-style: none; margin: 0; padding: 0; }

.slot {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr) auto;
  gap: 0.875rem;
  align-items: center;
  padding: 0.6875rem 1.125rem;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-sm);
}
.slot:last-child { border-bottom: 0; }

.slot__time {
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
  font-size: var(--t-xs);
  letter-spacing: 0.01em;
}
.slot__who { font-weight: 500; color: var(--ink); }
.slot__what { display: block; font-size: var(--t-xs); color: var(--ink-soft); font-weight: 400; }

.slot__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.1875rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  background: var(--violet-wash);
  color: var(--violet);
}
.slot__tag--live { background: rgba(23, 160, 138, 0.12); color: #0E7A68; }
.slot__tag--open { background: transparent; color: var(--ink-faint); border: 1px dashed var(--rule); }

.slot--open .slot__who { color: var(--ink-faint); font-weight: 400; font-style: italic; }

.daysheet__foot {
  padding: 0.8125rem 1.125rem;
  background: #FBFAFD;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  color: var(--ink-faint);
}

/* The single orchestrated motion moment: the sheet fills in like a day loading */
@media (prefers-reduced-motion: no-preference) {
  .daysheet .slot {
    opacity: 0;
    animation: slot-in 0.45s ease forwards;
  }
  .daysheet .slot:nth-child(1) { animation-delay: 0.10s; }
  .daysheet .slot:nth-child(2) { animation-delay: 0.18s; }
  .daysheet .slot:nth-child(3) { animation-delay: 0.26s; }
  .daysheet .slot:nth-child(4) { animation-delay: 0.34s; }
  .daysheet .slot:nth-child(5) { animation-delay: 0.42s; }
  .daysheet .slot:nth-child(6) { animation-delay: 0.50s; }
}

@keyframes slot-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Module list — ruled rows, not a card grid
   -------------------------------------------------------------------------- */

.modules { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }

.module {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.module h3 { font-size: var(--t-lg); }
.module p { margin: 0; color: var(--ink-soft); }
.module__detail {
  margin-top: 0.625rem;
  font-size: var(--t-sm);
  color: var(--ink-faint);
}

@media (max-width: 760px) {
  .module { grid-template-columns: 1fr; gap: 0.625rem; }
}

/* --------------------------------------------------------------------------
   Assurance rows (security page + home strip)
   -------------------------------------------------------------------------- */

.assurances { list-style: none; margin: 0; padding: 0; }

.assurance {
  border-top: 1px solid var(--rule-dark);
  padding-block: 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.assurance:last-child { border-bottom: 1px solid var(--rule-dark); }

.assurance__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jade);
  margin-top: 0.6875rem;
}

.assurance h3 { font-size: var(--t-md); margin-bottom: 0.375rem; }
.assurance p { margin: 0; color: #B9AEDC; font-size: var(--t-sm); }

/* Light variant for the security page */
.band--wash .assurance,
.band--wash .assurance:last-child { border-color: var(--rule); }
.band--wash .assurance p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Steps — numbered only because migration is an actual sequence
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step { counter-increment: step; }
.step::before {
  content: counter(step);
  display: block;
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--violet);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.625rem;
  margin-bottom: 0.875rem;
}
.step h3 { font-size: var(--t-md); margin-bottom: 0.5rem; }
.step p { margin: 0; font-size: var(--t-sm); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

/* Billing period switch.
   Carries `hidden` in the markup and is revealed by site.js, so a page with
   no JavaScript shows monthly prices rather than a control that does nothing. */

.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem 1.5rem;
  margin-bottom: 2rem;
}

.switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.switch__opt {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  background: none;
  border: 0;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
}
.switch__opt:hover { color: var(--violet); }
.switch__opt[aria-pressed="true"] { background: var(--violet); color: var(--white); }
.switch__opt:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

.pricing-controls__note {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--ink-faint);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.plan {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.plan--feature { border-color: var(--violet); border-width: 2px; }

.plan h3 { font-size: var(--t-lg); }
.plan__who { font-size: var(--t-sm); color: var(--ink-soft); margin: 0.5rem 0 1.25rem; }

.plan__price {
  font-family: var(--display);
  font-size: var(--t-2xl);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.plan__unit { font-family: var(--sans); font-size: var(--t-sm); color: var(--ink-faint); font-weight: 400; }

/* Always present in both states, so switching period doesn't shift the card. */
.plan__note {
  margin: 0.5rem 0 0;
  font-size: var(--t-xs);
  color: var(--ink-soft);
}

/* The inactive period's figures. Deliberately not `!important`; nothing else
   sets display on these spans. */
.plan [hidden], .pricing-controls [hidden] { display: none; }

.plan__list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  display: grid;
  gap: 0.625rem;
}
.plan__list li { padding-left: 1.25rem; position: relative; }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade);
}

.plan .btn { margin-top: auto; text-align: center; }

/* Bare variant: reuses the tick markers without the card's dividing rule */
.plan__list--bare { margin: 0; padding-top: 0; border-top: 0; }

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 44rem;
}
.field--wide { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  margin-bottom: 0.4375rem;
}
.field__hint { font-weight: 400; color: var(--ink-faint); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--t-sm);
  padding: 0.6875rem 0.8125rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--violet); }

.field textarea { min-height: 7rem; resize: vertical; }

.form-note {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  max-width: 44rem;
  margin-top: 1.5rem;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.125rem;
  border-radius: 4px;
  font-size: var(--t-sm);
  max-width: 44rem;
}
.form-status[data-state="ok"]   { background: rgba(23, 160, 138, 0.1); color: #0E7A68; }
.form-status[data-state="err"]  { background: #FCEEEE; color: #A32C2C; }
.form-status[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Prose (legal pages)
   -------------------------------------------------------------------------- */

.prose { max-width: var(--measure); }
.prose h2 { font-size: var(--t-xl); margin-top: 2.75rem; margin-bottom: 0.875rem; }
.prose h3 { font-size: var(--t-md); margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose ul { padding-left: 1.25rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.5rem; }

.notice {
  border-left: 3px solid var(--violet);
  background: var(--violet-wash);
  padding: 1.125rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: var(--t-sm);
  margin-bottom: 2rem;
}
.notice p { margin: 0; max-width: none; }
.notice--spaced { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--rule);
  padding-block: 3rem 2.5rem;
  font-size: var(--t-sm);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer h2 {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: 0;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer a { color: var(--ink-soft); text-decoration: none; }
.footer a:hover { color: var(--violet); text-decoration: underline; }

.footer__blurb { color: var(--ink-soft); max-width: 30ch; margin: 0.75rem 0 0; font-size: var(--t-sm); }

.footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-faint);
  font-size: var(--t-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========================================================================== 
   2026 PREMIUM GLASS SYSTEM
   Keeps the existing HTML/content model while giving the public site a
   luminous, high-end product surface. Jade remains semantic; decorative light
   uses violet/blue/pink so verified/live states keep their meaning.
   ========================================================================== */

:root {
  --ink: #F6F3FF;
  --ink-soft: #C8C1DC;
  --ink-faint: #938AAE;
  --violet: #8B6DFF;
  --violet-deep: #5D3FD3;
  --violet-wash: rgba(139, 109, 255, 0.10);
  --jade: #29D7B4;
  --paper: #090814;
  --white: #FFFFFF;
  --rule: rgba(255, 255, 255, 0.11);
  --rule-dark: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.065);
  --glass-strong: rgba(255, 255, 255, 0.10);
  --glass-soft: rgba(255, 255, 255, 0.035);
  --blue: #58A6FF;
  --pink: #C96CFF;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1240px;
}

html { background: #090814; }

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 9% 8%, rgba(119, 78, 255, 0.20), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(71, 146, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 76% 78%, rgba(186, 82, 255, 0.11), transparent 32rem),
    linear-gradient(180deg, #090814 0%, #0D0B1B 48%, #090814 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
}

::selection { background: rgba(139,109,255,.42); color: #fff; }

a { color: #C7B8FF; }
a:hover { color: #FFFFFF; }

.wrap { padding-inline: clamp(1.1rem, 3vw, 2rem); }
.band { position: relative; }
.band--wash {
  background: linear-gradient(180deg, rgba(139,109,255,.075), rgba(255,255,255,.025));
  border-block: 1px solid rgba(255,255,255,.06);
}
.band--dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(139,109,255,.18), transparent 26rem),
    radial-gradient(circle at 90% 90%, rgba(88,166,255,.10), transparent 24rem),
    rgba(8,7,20,.72);
  border-block: 1px solid rgba(255,255,255,.07);
}
.band--dark h1, .band--dark h2, .band--dark h3 { color: #fff; }
.band--dark a { color: #D8CEFF; }

.section-head {
  border-top: 0;
  padding-top: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 54rem;
}
.section-head::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 1.05rem;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  box-shadow: 0 0 22px rgba(139,109,255,.5);
}
.section-head h2 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -.035em; }
.section-head p,
.band--dark .section-head p { color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section-head--lead { margin-bottom: 0; }
.section-head--lead::before { width: 72px; }
.section-head--lead h1 {
  font-size: clamp(3rem, 7vw, 5.35rem);
  letter-spacing: -.05em;
  background: linear-gradient(125deg, #FFFFFF 8%, #DAD1FF 52%, #91C9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head--lead p { color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.26rem); }

/* Floating frosted navigation */
.masthead {
  border: 0;
  background: transparent;
  padding-top: 14px;
  position: sticky;
  top: 0;
  z-index: 80;
}
.masthead__inner {
  position: relative;
  min-height: 66px;
  padding: .7rem 1rem .7rem 1.15rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(15, 13, 32, .64);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 14px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.07);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.masthead.is-scrolled .masthead__inner {
  background: rgba(10, 9, 24, .86);
  box-shadow: 0 18px 55px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}
.wordmark { color: #fff; font-size: 1.18rem; letter-spacing: -.025em; }
.wordmark:hover { color: #fff; }
.wordmark__glyph {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, #9D87FF, #6343DD 62%, #4A8FEB);
  box-shadow: 0 8px 26px rgba(109,76,236,.42), inset 0 1px 0 rgba(255,255,255,.35);
}
.nav { gap: 1.45rem; }
.nav a { color: #BEB7D1; transition: color .18s ease, opacity .18s ease, transform .18s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"] { text-shadow: 0 0 20px rgba(139,109,255,.55); }
.nav__divider { background: rgba(255,255,255,.14); }
.nav-toggle { color: #fff; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); border-radius: 12px; }

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 1rem 1.55rem;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #9A7DFF 0%, #7452EE 55%, #5A44D2 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(116,82,238,.34), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #AA92FF 0%, #805EF5 55%, #624BDD 100%);
  color: #fff;
  box-shadow: 0 14px 38px rgba(116,82,238,.46), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--ghost {
  background: rgba(255,255,255,.055);
  color: #F4F0FF;
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.btn--ghost:hover { border-color: rgba(171,150,255,.5); background: rgba(139,109,255,.10); color: #fff; }
.band--dark .btn--primary { background: linear-gradient(135deg, #FFFFFF, #DED5FF); color: #211743; }
.band--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.18); }

/* Home hero */
.hero {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.25rem) clamp(4.5rem, 9vw, 7rem);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}
.hero::before {
  width: min(44vw, 600px);
  aspect-ratio: 1;
  right: -8%;
  top: -8%;
  background: radial-gradient(circle, rgba(121,79,255,.24), rgba(88,166,255,.08) 45%, transparent 70%);
}
.hero::after {
  width: min(30vw, 420px);
  aspect-ratio: 1;
  left: -12%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(201,108,255,.12), transparent 68%);
}
.hero__grid { position: relative; z-index: 1; gap: clamp(3rem, 7vw, 6rem); }
.hero__grid > div:first-child::before {
  content: "Clinic management • Canadian-hosted";
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: .46rem .78rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #CFC7E3;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}
.hero h1 {
  font-size: clamp(3.15rem, 7.2vw, 5.8rem);
  letter-spacing: -.055em;
  line-height: .98;
  background: linear-gradient(125deg, #fff 8%, #E1DBF8 53%, #9CCBFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede { color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.31rem); line-height: 1.65; max-width: 45ch; }
.residency { border-top-color: rgba(255,255,255,.11); color: #AAA2C2; }
.residency__dot { box-shadow: 0 0 0 5px rgba(41,215,180,.08), 0 0 18px rgba(41,215,180,.4); }

/* Product mock-up / day sheet */
.daysheet {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 42px 100px rgba(0,0,0,.42), 0 0 0 8px rgba(255,255,255,.025), inset 0 1px 0 #fff;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.daysheet:hover { transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px); box-shadow: 0 52px 120px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.04); }
.daysheet__bar { padding: 1rem 1.2rem; background: linear-gradient(120deg, #2A2053, #5A3CBF 68%, #405FAF); }
.daysheet__rows { background: rgba(255,255,255,.96); }
.slot { border-bottom-color: #EAE6F2; }
.daysheet__foot { background: #F6F3FB; border-top-color: #E8E3F1; }

/* Glass content cards */
.modules {
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.module {
  display: block;
  position: relative;
  min-width: 0;
  padding: 1.55rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.module::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,109,255,.23), transparent 70%);
  pointer-events: none;
}
.module:hover {
  transform: translateY(-6px);
  border-color: rgba(163,142,255,.28);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 26px 65px rgba(0,0,0,.28);
}
.module h3 { font-size: 1.65rem; margin-bottom: .8rem; color: #fff; }
.module p { color: var(--ink-soft); }
.module__detail { color: #9E95B7 !important; font-size: .9rem; }
.page-product .modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.page-product .module { padding: 1.75rem; }

/* Security cards */
.assurances {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.assurance,
.assurance:last-child,
.band--wash .assurance,
.band--wash .assurance:last-child {
  border: 1px solid rgba(255,255,255,.10);
  padding: 1.4rem 1.45rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.assurance:hover { transform: translateY(-4px); border-color: rgba(139,109,255,.28); background: rgba(255,255,255,.075); }
.assurance__mark { width: 10px; height: 10px; margin-top: .48rem; box-shadow: 0 0 0 5px rgba(41,215,180,.07), 0 0 16px rgba(41,215,180,.32); }
.assurance h3 { color: #fff; font-size: 1.28rem; }
.assurance p,
.band--wash .assurance p { color: var(--ink-soft); font-size: .95rem; }

/* Migration sequence */
.steps { gap: 1rem; }
.step {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.step::before {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(164,143,255,.32);
  border-radius: 14px;
  background: rgba(139,109,255,.10);
  color: #D8CDFF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.step h3 { color: #fff; font-size: 1.35rem; }
.step p { color: var(--ink-soft); }

/* Pricing */
.pricing-controls {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}
.switch { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.12); border-radius: 999px; padding: 4px; }
.switch__opt { color: #BEB6D0; border-radius: 999px; }
.switch__opt[aria-pressed="true"] { background: linear-gradient(135deg, #9275FF, #6548DC); color: #fff; box-shadow: 0 6px 18px rgba(101,72,220,.34); }
.pricing-controls__note { color: #9E96B5; }
.plans { gap: 1rem; }
.plan {
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.085), rgba(255,255,255,.032));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), var(--shadow-soft);
  padding: 1.8rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(159,137,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 30px 74px rgba(0,0,0,.30); }
.plan--feature {
  border-color: rgba(150,124,255,.62);
  border-width: 1px;
  background: linear-gradient(150deg, rgba(139,109,255,.17), rgba(255,255,255,.045));
  box-shadow: 0 26px 80px rgba(75,48,166,.24), inset 0 1px 0 rgba(255,255,255,.10);
}
.plan h3 { color: #fff; font-size: 1.75rem; }
.plan__who { color: var(--ink-soft); }
.plan__price { color: #fff; font-size: clamp(2.45rem, 4vw, 3.15rem); }
.plan__unit, .plan__note { color: #9D94B3; }
.plan__list { border-top-color: rgba(255,255,255,.10); color: #C8C1D8; }
.plan__list--bare { border-top: 0; }

/* Demo form */
#demo-form {
  max-width: 50rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.form-grid { max-width: none; }
.field label { color: #F3EFFF; }
.field__hint { color: #958CAB; }
.field input,
.field select,
.field textarea {
  border-color: rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(7,6,18,.52);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  color-scheme: dark;
}
.field input::placeholder, .field textarea::placeholder { color: #756D88; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: rgba(145,118,255,.75);
  background: rgba(13,11,29,.75);
  box-shadow: 0 0 0 4px rgba(139,109,255,.10);
}
.form-note { color: #9E96B3; max-width: none; }
.form-status { border-radius: 14px; max-width: none; }

/* Long-form and legal content */
.prose {
  max-width: 52rem;
  color: var(--ink-soft);
}
.page-pricing .prose,
.page-legal .prose {
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}
.prose h2, .prose h3 { color: #fff; }
.prose ul { color: var(--ink-soft); }
.notice {
  border-left: 0;
  border: 1px solid rgba(155,132,255,.24);
  background: rgba(139,109,255,.10);
  color: #D8D0E8;
  border-radius: 16px;
}

/* Inner-page opening areas */
.page-product main > .band:first-child,
.page-security main > .band:first-child,
.page-pricing main > .band:first-child,
.page-demo main > .band:first-child,
.page-legal main > .band:first-child {
  padding-top: clamp(5rem, 9vw, 7.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-security main > .band:nth-child(2) .assurances { margin-top: -1rem; }

/* Footer */
.footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(5,4,13,.52);
  padding-block: 4rem 2.5rem;
  backdrop-filter: blur(18px);
}
.footer h2 { color: #F3EFFF; }
.footer a { color: #AFA7C3; }
.footer a:hover { color: #fff; }
.footer__blurb { color: #928AA7; }
.footer__base { border-top-color: rgba(255,255,255,.08); color: #7F778F; }

/* Motion: progressive enhancement only; content stays visible without JS. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .68s cubic-bezier(.2,.7,.2,1), transform .68s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: float-glow 10s ease-in-out infinite alternate; }
  .hero::after { animation: float-glow 13s ease-in-out infinite alternate-reverse; }
}
@keyframes float-glow {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-22px,18px,0) scale(1.06); }
}

/* Responsive refinements */
@media (max-width: 980px) {
  .modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-product .modules { grid-template-columns: 1fr; }
  .assurances { grid-template-columns: 1fr; }
  .daysheet { transform: none; }
}

@media (max-width: 860px) {
  .masthead { padding-top: 8px; }
  .masthead__inner { min-height: 60px; border-radius: 18px; }
  .nav {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: .75rem;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(12,10,28,.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 22px 60px rgba(0,0,0,.4);
  }
  .nav a { border-bottom-color: rgba(255,255,255,.08); color: #C9C1D9; }
  .nav .btn { color: #fff; }
}

@media (max-width: 700px) {
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.65rem); }
  .modules { grid-template-columns: 1fr; }
  .plan { border-radius: 22px; }
  .section-head h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .slot { grid-template-columns: 3.5rem 1fr; }
  .slot__tag { grid-column: 2; justify-self: start; margin-top: .25rem; }
  .daysheet__bar { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .btn-row .btn { width: 100%; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div:first-child { grid-column: auto; }
}


/* ==========================================================================
   HOME 3D SHOWCASE — approved September 2026 direction
   Scoped to .page-home so inner pages keep their current glass treatment.
   ========================================================================== */

.page-home .wordmark--logo { gap: .7rem; font-family: var(--sans); font-weight: 600; font-size: 1.28rem; }
.page-home .wordmark__logo {
  width: 52px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(80, 115, 255, .34)) drop-shadow(0 0 18px rgba(205, 79, 255, .18));
}

.page-home .masthead { padding-top: 10px; }
.page-home .masthead__inner {
  max-width: 1320px;
  min-height: 70px;
  padding-inline: 1.35rem;
  border-color: rgba(203, 211, 255, .20);
  background: linear-gradient(135deg, rgba(48, 54, 120, .42), rgba(31, 25, 79, .32));
  box-shadow: 0 18px 55px rgba(3, 7, 37, .28), inset 0 1px 0 rgba(255,255,255,.11);
}
.page-home .masthead.is-scrolled .masthead__inner { background: rgba(12, 13, 45, .82); }

.page-home .hero--showcase {
  min-height: 760px;
  padding-block: clamp(4.2rem, 8vw, 7rem) 2.25rem;
  background:
    radial-gradient(circle at 66% 31%, rgba(43, 190, 255, .22), transparent 21rem),
    radial-gradient(circle at 86% 19%, rgba(133, 95, 255, .24), transparent 25rem),
    radial-gradient(circle at 16% 62%, rgba(205, 83, 255, .18), transparent 21rem),
    linear-gradient(135deg, #080D2C 0%, #10184A 45%, #171044 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-home .hero--showcase::before,
.page-home .hero--showcase::after { display: none; }

.page-home .hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(115,150,255,.30), rgba(190,83,255,.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 30px 80px rgba(29, 42, 145, .20);
  backdrop-filter: blur(4px);
}
.page-home .hero-orb--one { width: 170px; height: 170px; left: -50px; top: 38%; }
.page-home .hero-orb--two { width: 225px; height: 225px; right: 9%; top: 11%; background: linear-gradient(145deg, rgba(105,170,255,.36), rgba(174,82,255,.14)); }
.page-home .hero-orb--three { width: 145px; height: 145px; left: 45%; bottom: 13%; background: linear-gradient(145deg, rgba(255,179,210,.42), rgba(144,88,255,.20)); }

.page-home .hero__grid {
  max-width: 1320px;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.page-home .hero__grid > div:first-child::before { display: none; }
.page-home .hero__copy { padding-top: .5rem; }
.page-home .hero__kicker {
  display: inline-flex;
  margin: 0 0 1.15rem;
  padding: .45rem .76rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #D8D8F2;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.page-home .hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.55rem, 6.3vw, 6rem);
  line-height: .94;
  letter-spacing: -.058em;
  color: #fff;
  background: none;
  -webkit-text-fill-color: initial;
}
.page-home .hero__accent {
  color: transparent;
  background: linear-gradient(110deg, #C8A6FF 8%, #A383FF 45%, #7CAFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 6px 25px rgba(131, 100, 255, .18));
}
.page-home .hero__lede { color: #C7C9E3; max-width: 47ch; margin-top: 1.55rem; }
.page-home .hero__actions { margin-top: 1.75rem; }
.page-home .hero__actions .btn { min-width: 178px; justify-content: center; }
.page-home .residency {
  max-width: 49ch;
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
  align-items: flex-start;
  gap: .75rem;
  color: #BBC0DC;
  font-size: .88rem;
}
.page-home .residency__shield {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  margin-top: .1rem;
  border-radius: 8px 8px 10px 10px;
  background: linear-gradient(145deg, #33D8BA, #13A78F);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(19, 167, 143, .28), inset 0 1px 0 rgba(255,255,255,.35);
}

.page-home .hero-visual {
  --rx: 3.2deg;
  --ry: -14deg;
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  perspective: 1500px;
  transform-style: preserve-3d;
}
.page-home .hero-visual__halo {
  position: absolute;
  width: 74%;
  height: 68%;
  right: 5%;
  top: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 190, 255, .28), rgba(102, 86, 255, .18) 42%, transparent 71%);
  filter: blur(24px);
  opacity: .95;
}
.page-home .daysheet-depth {
  position: absolute;
  width: min(100%, 700px);
  height: 405px;
  border: 1px solid rgba(205, 220, 255, .21);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(143,174,255,.11), rgba(162,104,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  pointer-events: none;
  transform-style: preserve-3d;
}
.page-home .daysheet-depth--back {
  transform: translate3d(34px, -31px, -85px) rotateX(var(--rx)) rotateY(var(--ry));
  opacity: .55;
}
.page-home .daysheet-depth--mid {
  transform: translate3d(19px, -17px, -44px) rotateX(var(--rx)) rotateY(var(--ry));
  opacity: .78;
}
.page-home .daysheet--3d {
  position: relative;
  z-index: 3;
  width: min(100%, 700px);
  margin-inline: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(213, 225, 255, .38);
  background: linear-gradient(145deg, rgba(87, 105, 198, .50), rgba(56, 50, 129, .56));
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    0 48px 110px rgba(1, 5, 31, .55),
    0 0 65px rgba(86, 122, 255, .20),
    inset 0 1px 0 rgba(255,255,255,.17);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(16px);
  transition: transform .18s ease-out, box-shadow .28s ease;
}
.page-home .hero-visual:hover .daysheet--3d {
  box-shadow: 0 55px 125px rgba(1, 5, 31, .60), 0 0 85px rgba(103, 127, 255, .26), inset 0 1px 0 rgba(255,255,255,.20);
}
.page-home .daysheet--3d .daysheet__bar {
  padding: 1.15rem 1.3rem;
  background: linear-gradient(120deg, rgba(55, 61, 145, .93), rgba(76, 68, 171, .88));
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.page-home .daysheet--3d .daysheet__date { color: #fff; font-family: var(--sans); font-weight: 600; }
.page-home .daysheet--3d .daysheet__meta { color: #E6E8FF; }
.page-home .daysheet--3d .daysheet__rows { padding: .55rem; background: rgba(47, 49, 126, .24); }
.page-home .daysheet--3d .slot {
  margin-bottom: .42rem;
  padding: .72rem .9rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.065);
  backdrop-filter: blur(12px);
}
.page-home .daysheet--3d .slot:last-child { margin-bottom: 0; }
.page-home .daysheet--3d .slot__time { color: #D9DCF3; }
.page-home .daysheet--3d .slot__who { color: #fff; }
.page-home .daysheet--3d .slot__what { color: #C2C6E2; }
.page-home .daysheet--3d .slot__tag {
  border-radius: 999px;
  padding: .28rem .65rem;
  background: linear-gradient(135deg, rgba(135, 116, 255, .96), rgba(94, 80, 220, .96));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.21), 0 5px 16px rgba(53, 42, 143, .22);
}
.page-home .daysheet--3d .slot__tag--live { background: linear-gradient(135deg, #2FCAB0, #18A98F); color: #fff; }
.page-home .daysheet--3d .slot--open { border-style: dashed; background: rgba(255,255,255,.025); }
.page-home .daysheet--3d .slot--open .slot__who { color: #D8DAEC; font-style: normal; }
.page-home .daysheet--3d .slot__tag--open { background: rgba(255,255,255,.08); color: #E5E8FA; border: 1px solid rgba(255,255,255,.24); }
.page-home .daysheet--3d .daysheet__foot {
  padding: .8rem 1.15rem;
  background: rgba(25, 27, 78, .45);
  border-top: 1px solid rgba(255,255,255,.10);
  color: #B8BDDA;
}

/* Homepage Appointments preview — mirrors the real ZenZon schedule language. */
.page-home .appointments-preview__bar {
  padding: .82rem 1rem;
}
.page-home .appointments-preview__bar .daysheet__date {
  font-size: .78rem;
  white-space: nowrap;
}
.page-home .appointments-preview__bar .daysheet__meta {
  font-size: .68rem;
}
.page-home .appt-board {
  --time-col: 46px;
  --practitioner-row: 74px;
  display: grid;
  grid-template-columns: var(--time-col) repeat(4, minmax(0, 1fr));
  grid-template-rows: var(--practitioner-row) repeat(9, 29px);
  position: relative;
  padding: .48rem .5rem .55rem;
  gap: 2px 4px;
  background: rgba(29, 36, 104, .22);
}
.page-home .appt-board::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: .5rem;
  right: .5rem;
  top: calc(.48rem + var(--practitioner-row) + 2px);
  bottom: .55rem;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(220,232,255,.08) 0 1px,
    transparent 1px 31px
  );
}
.page-home .appt-board > * {
  position: relative;
  z-index: 1;
}
.page-home .appt-board__corner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #DDE4FF;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.page-home .appt-practitioner {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: .13rem;
  padding: .4rem .22rem .44rem;
  border: 1px solid rgba(181, 206, 255, .14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(92, 110, 208, .48), rgba(72, 84, 170, .36));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.page-home .appt-practitioner__photo {
  position: relative;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(235, 241, 255, .78);
  box-shadow: 0 3px 11px rgba(5, 12, 48, .35), inset 0 1px 0 rgba(255,255,255,.35);
  color: rgba(255,255,255,.94);
  font-size: .52rem;
  font-weight: 800;
}
.page-home .appt-practitioner__photo::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}
.page-home .appt-practitioner__photo::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 15px;
  bottom: -6px;
  border-radius: 50% 50% 18% 18%;
  background: rgba(255,255,255,.28);
}
.page-home .appt-practitioner__photo span { position: relative; z-index: 2; opacity: 0; }
.page-home .appt-practitioner__photo--rtcpm { background: linear-gradient(145deg, #4FC6FF, #6F5EFF); }
.page-home .appt-practitioner__photo--rmt { background: linear-gradient(145deg, #7A8CFF, #B56DFF); }
.page-home .appt-practitioner__photo--pt { background: linear-gradient(145deg, #48D5C2, #4B8DFF); }
.page-home .appt-practitioner__photo--dc { background: linear-gradient(145deg, #B478FF, #6D72FF); }
.page-home .appt-practitioner__name {
  max-width: 100%;
  overflow: hidden;
  color: #F2F4FF;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-home .appt-practitioner__discipline {
  color: #7FB4FF;
  font-size: .53rem;
  font-weight: 600;
}
.page-home .appt-time {
  grid-column: 1;
  align-self: start;
  padding: .12rem .1rem 0 0;
  color: #CBD4F2;
  font-size: .57rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.page-home .appt-gridline {
  z-index: 1;
  margin-top: 1px;
  border-left: 1px solid rgba(215, 226, 255, .09);
  border-right: 1px solid rgba(215, 226, 255, .05);
  background: rgba(255,255,255,.012);
}
.page-home .appt-booking {
  z-index: 2;
  min-width: 0;
  margin: 2px 1px;
  padding: .28rem .34rem;
  display: grid;
  align-content: center;
  gap: .03rem;
  overflow: hidden;
  border: 1px solid rgba(109, 223, 164, .28);
  border-left: 3px solid #64D58B;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(95, 210, 147, .20), rgba(186, 232, 224, .09));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 6px 15px rgba(4,10,42,.16);
  color: #EAF8F0;
}
.page-home .appt-booking--rmt { border-left-color: #56CFA0; background: linear-gradient(135deg, rgba(91, 207, 151, .18), rgba(127, 199, 221, .08)); }
.page-home .appt-booking--soft { border-left-color: #80D8B3; opacity: .92; }
.page-home .appt-booking--pt { border-left-color: #61B7FF; background: linear-gradient(135deg, rgba(72, 151, 235, .18), rgba(90, 204, 198, .08)); }
.page-home .appt-booking--dc { border-left-color: #9C83FF; background: linear-gradient(135deg, rgba(126, 101, 232, .20), rgba(95, 134, 222, .08)); }
.page-home .appt-booking__code {
  color: #7FF0AE;
  font-size: .52rem;
  font-weight: 800;
  line-height: 1;
}
.page-home .appt-booking--pt .appt-booking__code { color: #86CCFF; }
.page-home .appt-booking--dc .appt-booking__code { color: #C1B3FF; }
.page-home .appt-booking__code--telehealth {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
}
.page-home .appt-booking__code--telehealth svg {
  width: .62rem;
  height: .62rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-home .appt-booking strong {
  overflow: hidden;
  color: #F5F8FF;
  font-size: .56rem;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-home .appt-booking > span:not(.appt-booking__code) {
  overflow: hidden;
  color: #D5E1F2;
  font-size: .45rem;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-home .appt-booking small {
  color: #AFC2DE;
  font-size: .43rem;
  line-height: 1.05;
}
.page-home .appointments-preview .daysheet__foot {
  padding: .5rem .8rem;
  font-size: .53rem;
}

.page-home .home-feature-wrap { max-width: 1320px; margin-top: .35rem; }
.page-home .home-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  border: 1px solid rgba(205, 215, 255, .19);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(111, 126, 212, .23), rgba(84, 61, 158, .20));
  box-shadow: 0 25px 65px rgba(2, 6, 34, .26), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  overflow: hidden;
}
.page-home .home-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.10);
}
.page-home .home-feature:last-child { border-right: 0; }
.page-home .home-feature__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(116, 133, 235, .10));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 10px 25px rgba(21, 31, 106, .22);
}
.page-home .home-feature__icon svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.page-home .home-feature strong { display: block; color: #fff; font-size: .94rem; }
.page-home .home-feature small { display: block; margin-top: .25rem; color: #BFC4E1; font-size: .76rem; line-height: 1.45; }

.page-home .home-platform {
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 109, 255, .15), transparent 24rem),
    linear-gradient(180deg, #F8F8FC 0%, #F3F2FA 100%);
  color: #19142A;
  border-top: 0;
}
.page-home .home-platform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 170px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, #9C6DFF, #6EA9FF, transparent);
  box-shadow: 0 0 25px rgba(139,109,255,.40);
}
.page-home .home-platform__head { max-width: 860px; margin-inline: auto; text-align: center; }
.page-home .home-platform__head::before { display: none; }
.page-home .home-platform__eyebrow {
  margin: 0 0 .75rem;
  color: #6C5CA0 !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.page-home .home-platform .section-head h2 { color: #211933; font-size: clamp(2.7rem, 5vw, 4.5rem); }
.page-home .home-platform .section-head > p:last-child { margin-inline: auto; color: #716A82; font-size: 1rem; }
.page-home .home-platform .modules { margin-top: 2.5rem; }
.page-home .home-platform .module {
  border-color: rgba(75, 61, 115, .11);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 45px rgba(44, 34, 73, .08), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
}
.page-home .home-platform .module:hover { border-color: rgba(111, 82, 196, .25); background: #fff; box-shadow: 0 25px 55px rgba(44,34,73,.12); }
.page-home .home-platform .module::after { background: radial-gradient(circle, rgba(128,96,225,.13), transparent 70%); }
.page-home .home-platform .module h3 { color: #241B36; }
.page-home .home-platform .module p { color: #645D72; }
.page-home .home-platform .module__detail { color: #8A8394 !important; }

@media (prefers-reduced-motion: no-preference) {
  .page-home .hero-orb--one { animation: home-orb-a 9s ease-in-out infinite alternate; }
  .page-home .hero-orb--two { animation: home-orb-b 11s ease-in-out infinite alternate; }
  .page-home .hero-orb--three { animation: home-orb-a 13s ease-in-out infinite alternate-reverse; }
}
@keyframes home-orb-a { to { transform: translate3d(18px,-14px,0) scale(1.04); } }
@keyframes home-orb-b { to { transform: translate3d(-15px,18px,0) scale(1.05); } }


@media (max-width: 1180px) and (min-width: 981px) {
  .page-home .appt-board { --time-col: 42px; --practitioner-row: 68px; grid-template-rows: var(--practitioner-row) repeat(9, 27px); gap-inline: 3px; }
  .page-home .appt-practitioner__name { font-size: .56rem; }
  .page-home .appt-booking strong { font-size: .51rem; }
}

@media (max-width: 1180px) {
  .page-home .hero__grid { grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr); }
  .page-home .hero-visual__note { display: none; }
  .page-home .home-feature { grid-template-columns: 46px 1fr; padding-inline: 1rem; gap: .75rem; }
  .page-home .home-feature__icon { width: 46px; height: 46px; }
}
@media (max-width: 980px) {
  .page-home .hero--showcase { padding-top: 4.5rem; }
  .page-home .hero__grid { grid-template-columns: 1fr; }
  .page-home .hero__copy { max-width: 720px; }
  .page-home .hero-visual { min-height: 500px; margin-top: .75rem; }
  .page-home .daysheet--3d,
  .page-home .daysheet-depth--back,
  .page-home .daysheet-depth--mid { transform: none !important; }
  .page-home .daysheet-depth--back { transform: translate(20px,-20px) !important; }
  .page-home .daysheet-depth--mid { transform: translate(10px,-10px) !important; }
  .page-home .home-feature-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-home .home-feature:nth-child(2) { border-right: 0; }
  .page-home .home-feature:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 700px) {
  .page-home .wordmark__logo { width: 44px; height: 37px; }
  .page-home .wordmark--logo { font-size: 1.12rem; }
  .page-home .hero--showcase { padding-top: 3.25rem; }
  .page-home .hero h1 { font-size: clamp(3.05rem, 14vw, 4.55rem); }
  .page-home .hero-visual { min-height: 455px; }
  .page-home .daysheet--3d { width: 100%; }
  .page-home .daysheet-depth { width: 96%; height: 380px; }
  .page-home .home-feature-strip { grid-template-columns: 1fr; }
  .page-home .home-feature { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .page-home .home-feature:last-child { border-bottom: 0; }
  .page-home .home-feature:nth-child(2) { border-right: 0; }
  .page-home .home-platform .modules { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-home .hero__kicker { font-size: .67rem; }
  .page-home .hero-visual { min-height: 510px; }
  .page-home .daysheet-depth { display: none; }
  .page-home .daysheet--3d .slot { grid-template-columns: 3.25rem 1fr; }
  .page-home .daysheet--3d .slot__tag { grid-column: 2; justify-self: start; }
}

/* =========================================================
   FINAL WEBSITE THEME LOCK
   Dark background + Constantia
   ========================================================= */

html,
body {
    min-height: 100%;
    background-color: #0b123f !important;
}

body {
    background:
        radial-gradient(circle at 78% 8%, rgba(77, 108, 221, .24), transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(119, 76, 185, .16), transparent 30%),
        linear-gradient(135deg, #08113a 0%, #101a50 52%, #181047 100%) !important;

    background-attachment: fixed !important;

    font-family: Constantia, Georgia, "Times New Roman", serif !important;
}

/* Keep the same font throughout the website */
button,
input,
textarea,
select,
option {
    font-family: Constantia, Georgia, "Times New Roman", serif !important;
}

/* Remove page-level white/light backgrounds */
main,
main > section,
.page-home,
.page-home main,
.page-home .home-platform,
.page-product,
.page-pricing,
.page-security,
.page-demo,
.page-privacy,
.page-terms {
    background-color: transparent !important;
}

/* Homepage light section text on dark background */
.page-home .home-platform {
    color: #f5f5ff !important;
}

.page-home .home-platform h1,
.page-home .home-platform h2,
.page-home .home-platform h3,
.page-home .home-platform > p {
    color: #f5f5ff !important;
}


/* =========================================================
   FINAL DARK BACKGROUND LOCK
   Keep every page section on the website background
   ========================================================= */

body.page-home .home-platform,
body.page-home main > section,
body.page-product main > section,
body.page-pricing main > section,
body.page-security main > section,
body.page-demo main > section,
body.page-privacy main > section,
body.page-terms main > section {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Homepage platform section text */
body.page-home .home-platform,
body.page-home .home-platform h1,
body.page-home .home-platform h2,
body.page-home .home-platform h3,
body.page-home .home-platform p {
    color: #f5f5ff !important;
}


/* =========================================================
   FINAL DARK MODULE CARD LOCK
   Dark at rest + dark glass hover
   ========================================================= */

.modules .module {
    background:
        linear-gradient(
            145deg,
            rgba(33, 43, 112, .88),
            rgba(47, 35, 106, .82)
        ) !important;

    border: 1px solid rgba(174, 169, 255, .24) !important;
    border-radius: 24px !important;

    box-shadow:
        0 18px 45px rgba(3, 8, 38, .28),
        inset 0 1px 0 rgba(255,255,255,.10) !important;

    color: #f7f6ff !important;

    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease !important;
}

.modules .module h3 {
    color: #ffffff !important;
}

.modules .module p {
    color: #dedcf2 !important;
}

.modules .module .module__detail {
    color: #aaa7c7 !important;
}

/* Hover stays DARK — never white */
.modules .module:hover {
    background:
        linear-gradient(
            145deg,
            rgba(61, 70, 154, .96),
            rgba(74, 49, 139, .94)
        ) !important;

    border-color: rgba(188, 176, 255, .50) !important;

    box-shadow:
        0 24px 55px rgba(3, 8, 38, .38),
        0 0 28px rgba(116, 103, 255, .14),
        inset 0 1px 0 rgba(255,255,255,.14) !important;

    transform: translateY(-3px) !important;
}

.modules .module:hover h3 {
    color: #ffffff !important;
}

.modules .module:hover p {
    color: #f1efff !important;
}

.modules .module:hover .module__detail {
    color: #cbc7e3 !important;
}


/* =========================================================
   FINAL WEBSITE TYPOGRAPHY LOCK
   Constantia only — Regular / Bold
   ========================================================= */

html,
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li,
button, input, textarea, select, label,
small, strong, em {
    font-family: Constantia, Georgia, "Times New Roman", serif !important;
}

/* Base text */
body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

/* Paragraphs */
p,
li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

/* Navigation */
.nav a,
.nav button {
    font-size: 1rem;
    font-weight: 400;
}

/* Brand name */
.wordmark,
.wordmark span {
    font-size: 1.35rem;
    font-weight: 700;
}

/* Large hero heading */
.hero h1,
.page-home .hero h1 {
    font-weight: 700 !important;
    line-height: .94;
}

/* Main page headings */
h1 {
    font-weight: 700;
}

h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
}

h3 {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
}

h4,
h5,
h6 {
    font-weight: 700;
}

/* Section kicker / eyebrow text */
.eyebrow,
.hero__kicker,
.section-kicker,
.kicker {
    font-size: .82rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Homepage module cards */
.modules .module h3 {
    font-size: 1.55rem !important;
    font-weight: 700 !important;
}

.modules .module p {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    line-height: 1.55;
}

.modules .module .module__detail {
    font-size: .95rem !important;
    font-weight: 400 !important;
}

/* Buttons */
.btn,
button {
    font-size: 1rem;
    font-weight: 700 !important;
}

/* Footer */
.footer,
.footer p,
.footer a,
.footer li {
    font-size: .95rem;
    font-weight: 400;
}

.footer h2,
.footer h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Bold text stays true bold */
strong,
b {
    font-weight: 700 !important;
}

/* Responsive typography */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    h2 {
        font-size: clamp(2.15rem, 9vw, 3.5rem);
    }

    h3,
    .modules .module h3 {
        font-size: 1.35rem !important;
    }
}


/* =========================================================
   TYPOGRAPHY TEST — IBM PLEX SANS
   Regular 400 / Bold 700
   ========================================================= */

html,
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li,
button, input, textarea, select, option, label,
small, strong, b, em,
.wordmark,
.wordmark span,
.btn,
.nav,
.nav a,
.footer,
.module,
.module h3,
.module p,
.module__detail {
    font-family: "IBM Plex Sans", Arial, sans-serif !important;
}

body,
p,
li,
.module p,
.module__detail,
.footer,
.footer p,
.footer a,
.nav a {
    font-weight: 400 !important;
}

h1, h2, h3, h4, h5, h6,
strong, b,
.wordmark,
.wordmark span,
.btn,
button,
.module h3 {
    font-weight: 700 !important;
}

