  :root{
    --purple: #5C3286;
    --purple-dark: #3A2055;
    --ink: #201A2B;
    --paper: #FFFFFF;
    --hairline: #E7E1EF;
    --bullet-bg: #F6F3FA;
  }

  *{ box-sizing: border-box; }

  html, body{
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .page{
	max-width: 100vw;
    margin: 0 auto;
    /*padding: clamp(20px, 4vw, 48px) clamp(16px, 5vw, 40px) clamp(48px, 8vw, 80px);*/
  }

  /* ---------- Page title section ---------- */
  #title{
    text-align: center;
    padding-bottom: clamp(20px, 4vw, 32px);
    <!--border-bottom: 5px solid var(--hairline);-->
    margin-bottom: clamp(28px, 5vw, 44px);
  }

  h1{
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: var(--purple);
    font-size: clamp(2rem, 6vw, 3.1rem);
    letter-spacing: 0.01em;
    margin: 0 0 clamp(10px, 2vw, 16px);
    line-height: 1.05;
  }

  .tagline{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.55em 0.9em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.6vw, 1.3rem);
    color: var(--ink);
    margin: 0;
  }

  .tagline span:not(.dot){ white-space: nowrap; }

  .tagline .dot{
    color: var(--purple);
    font-weight: 700;
  }



  h2{
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: var(--purple);
    text-align: center;
    font-size: clamp(1.5rem, 4.4vw, 2.15rem);
    margin: 0 0 clamp(22px, 4vw, 32px);
    line-height: 1.1;
  }

  ul.services{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(16px, 4vw, 40px);
    row-gap: 4px;
  }

  ul.services li{
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    padding: 9px 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.6vw, 1.2rem);
    line-height: 1.25;
    /*border-bottom: 1px solid var(--hairline);*/
  }

  ul.services li::before{
    content: '';
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 0.5em;
    border-radius: 50%;
    background: var(--purple);
  }

  /* ---------- Mobile ---------- */
  @media (max-width: 640px){
    ul.services{
      grid-template-columns: 1fr;
    }
    .tagline{
      flex-direction: column;
      gap: 0.35em;
    }
    .tagline .dot{ display: none; }
    .watermark{
	  align-items: center;	
      background-size: min(420px, 92%) auto;
      opacity: 0.07;
    }
  }

  @media (max-width: 400px){
    ul.services li{ font-size: 1rem; }
  }

.title
{
	align-items: center;
	margin-top: 25px;
	margin-bottom: 50px;
}

/* Header, utility-bar, .topnav, dropdown, and .btn are now handled entirely
   by style.css (same as index.html) so the menu matches exactly. */