:root{

  --ink: #242752;

  --ink-2: #34376a;

  --muted: #6b6e93;



  --bg: #f4f2f8;

  --card: #fcfbfe;

  --lav: #ece6f4;



  --primary: #2f2d6b;

  --primary-2: #26245a;



  --shadow: 0 18px 40px rgba(28, 30, 62, .14);

  --shadow-soft: 0 10px 24px rgba(28, 30, 62, .10);



  --radius-xl: 18px;

  --radius-lg: 14px;

  --radius-md: 12px;



  --maxw: 1060px;

}



*{ box-sizing: border-box; }

body{

  margin:0;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  color: var(--ink);

  background: var(--bg);

}



a{ color: inherit; text-decoration: none; }

a:hover{ text-decoration: underline; }



.page{

  padding: 0px 0px 56px;

}



.container{

  max-width: var(--maxw);

  margin: 0 auto;

  padding: 0 22px;

}



/* Header */

.site-header{

  position: sticky;

  top: 0;

  z-index: 10;

  background: rgba(248,247,252,.92);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(40,44,88,.06);

}

.header-inner{

  display:flex;

  align-items:center;

  justify-content: space-between;

  gap: 24px;

  padding: 10px 0;

  flex-wrap: nowrap;

}



.brand{

  display:flex;

  align-items:center;

  gap:322px;

  flex-shrink: 0;

}

.brand-mark{

  width:108px; height:108px; border-radius: 50%;

  object-fit: cover;

  border: 1px solid rgba(40,44,88,.12);

}

.brand-wordmark{

  height:60px;
  width:auto;
  display: block;

}

.brand-sub{

  font-size: 11px;

  letter-spacing: .18em;

  color: var(--muted);

  margin-top: 2px;

}



.nav{

  display:flex;

  align-items:center;

  gap: 18px;

  font-size: 16px;

  color: var(--ink-2);

  flex-wrap: nowrap;

}

.nav a{ opacity: .92; 
        white-space: nowrap;

}

.nav a:hover{ opacity: 1; }



/* Shell */

.shell{

  margin: 22px auto 0;
  
  width: calc(100% - 36px);

  max-width: calc(var(--maxw) + 44px);

  background: #fff;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: var(--shadow);

  border: 1px solid rgba(40,44,88,.10);

}



/* Hero */

.hero{

  position: relative;

  min-height: 360px;

  display: flex;

  align-items: center;

  overflow: hidden;

}

.hero-bg{

  position:absolute;

  inset:0;

  background:

    linear-gradient(
       to right, 
       rgba(244,242,248,.92) 0%, 
       rgba(236,231,244,.84) 45%,
       rgba(236,231,244,.70) 100%
    ),
    url("assets/marble.png");

  background-size: cover;

  background-position: center;

}

.hero-inner{

  position: relative;

  padding: 56px 22px 52px;

}

.hero h1{

  margin: 0 0 16px;

  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;

  font-size: 44px;

  line-height: 1.08;

  letter-spacing: -0.01em;

}

.lede{

  margin: 0 0 26px;

  max-width: 560px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.55;

}

.hero-actions{

  display:flex;

  gap: 12px;

  flex-wrap: wrap;

}



/* Buttons */

.btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 10px;

  border: 1px solid rgba(42,47,103,.18);

  font-weight: 600;

  font-size: 14px;

  box-shadow: 0 6px 14px rgba(28,30,62,.08);

}

.btn-small{ padding: 10px 18px; border-radius: 10px; }

.btn-primary{

  background: var(--primary);

  color: #fff;

  border-color: rgba(0,0,0,0);

}

.btn-primary:hover{

  background: var(--primary-2);

  text-decoration: none;

}

.btn-ghost{

  background: rgba(255,255,255,.65);

  color: var(--primary);

}

.btn-ghost:hover{

  background: rgba(255,255,255,.85);

  text-decoration: none;

}



/* Value props */

.value-props{

  background: 
    linear-gradient(
      rgba(244,242,248,.78),
      rgba(244,242,248,.62)
    ),
    url("assets/value-bg.png");

  background-size: cover;
  background-position: center;

  border-top: 1px solid rgba(40,44,88,.05);

  border-bottom: 1px solid rgba(40,44,88,.05);

}

.value-grid{

  display:grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  padding: 28px 22px;

}

.value{

  text-align:center;

  padding: 10px 8px;

}

.value-icon{

  width: 44px; height: 44px;

  margin: 0 auto 8px;

  border-radius: 50%;

  display:grid;

  place-items:center;

  background: rgba(255,255,255,.7);

  border: 1px solid rgba(40,44,88,.10);

  color: var(--primary);

  font-weight: 800;

}

.value h3{

  margin: 6px 0 6px;

  font-family: ui-serif, Georgia, serif;

  font-size: 16px;

}

.value p{

  margin:0;

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.5;

}



/* Sections */

.section{ padding: 34px 0 36px; }

.section-muted{ background: rgba(236,231,244,.52); border-top: 1px solid rgba(40,44,88,.08); }



.section-title{

  text-align:center;

  margin: 0 0 18px;

  font-family: ui-serif, Georgia, serif;

  font-size: 28px;

  letter-spacing: -0.01em;

}



.center{ text-align:center; margin-top: 18px; }



/* Cards */

.cards{

  display:grid;

  gap: 16px;

}

.cards-4{ grid-template-columns: repeat(4, 1fr); }

.cards-3{ grid-template-columns: repeat(3, 1fr); }



.card, .post-card{

  background: rgba(248,246,252,.95);

  border: 1px solid rgba(40,44,88,.08);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);

  backdrop-filter: blur(6px);

}



.card{

  padding: 18px 16px;

  text-align:center;

}

.card-icon{

  width: 44px; height: 44px;

  border-radius: 50%;

  margin: 0 auto 10px;

  display:grid;

  place-items:center;

  background: rgba(235,231,246,.9);

  border: 1px solid rgba(40,44,88,.10);

  color: var(--primary);

  font-weight: 800;

}

.card h3{

  margin: 0 0 8px;

  font-family: ui-serif, Georgia, serif;

  font-size: 16px;

}

.card p{

  margin:0;

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.5;

}



.post-card{

  padding: 18px 18px 16px;

}

.pill{

  display:inline-block;

  padding: 6px 10px;

  font-size: 11px;

  border-radius: 999px;

  background: rgba(235,231,246,.9);

  border: 1px solid rgba(40,44,88,.10);

  color: var(--primary);

  margin-bottom: 10px;

}

.post-card h3{

  margin: 0 0 8px;

  font-family: ui-serif, Georgia, serif;

  font-size: 18px;

  line-height: 1.2;

}

.post-card p{

  margin: 0 0 10px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.55;

}

.post-link{

  color: var(--primary);

  font-weight: 650;

  font-size: 13px;

}



/* Footer */

.site-footer{

  padding: 22px 0 26px;

  border-top: 1px solid rgba(40,44,88,.08);

  background: rgba(248,247,252,.9);

}

.footer-inner{

  display:flex;

  justify-content: space-between;

  gap: 18px;

  color: var(--muted);

  font-size: 13px;

}

.footer-links a{ color: var(--primary); }



/* Responsive */

@media (max-width: 980px){

  .cards-4{ grid-template-columns: repeat(2, 1fr); }

  .cards-3{ grid-template-columns: repeat(2, 1fr); }

  .value-grid{ grid-template-columns: 1fr; }

  .hero h1{ font-size: 38px; }

}

@media (max-width: 640px){

  .nav a:not(.btn){ display:none; } /* simple collapse */

  .hero-inner{ padding: 44px 16px 40px; }

  .hero h1{ font-size: 32px; }

  .cards-3{ grid-template-columns: 1fr; }

  .cards-4{ grid-template-columns: 1fr; }

  .footer-inner{ flex-direction: column; }

}



