:root{
  --ink:#0b0a0b;
  --ink-2:#131217;
  --purple:#7c46ff;
  --white:#f5f5f7;
  --grey:#96949b;
  --grey-line:#242229;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--white);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:500;
  letter-spacing:-0.01em;
}
a{color:inherit;}
.wrap{max-width:960px; margin:0 auto; padding:0 32px;}

header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(11,10,11,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--grey-line);
}
nav{
  max-width:960px; margin:0 auto; padding:18px 32px;
  display:flex; align-items:center; justify-content:space-between;
}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none;}
.logo img{height:22px; width:auto; display:block;}
.logo span{font-family:'Inter'; font-weight:700; font-size:14px; letter-spacing:0.06em; color:var(--white);}
.nav-links{display:flex; align-items:center; gap:32px;}
.nav-links a{
  font-size:14px; font-weight:500; text-decoration:none; color:var(--grey);
  transition:color .2s ease;
}
.nav-links a:hover, .nav-links a.active{color:var(--white);}
nav .cta{
  font-size:13px; font-weight:600; padding:9px 18px;
  border:1px solid var(--purple); border-radius:100px;
  text-decoration:none; transition:background .2s ease; color:var(--white);
}
nav .cta:hover{background:var(--purple);}
@media (max-width:640px){ .nav-links{display:none;} }

.page-hero{padding:170px 0 80px; position:relative;}
.page-hero::before{
  content:"";
  position:absolute; top:-100px; right:-200px;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(124,70,255,0.16), transparent 70%);
  pointer-events:none;
}
.eyebrow{
  color:var(--purple); font-size:13px; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  margin-bottom:22px; display:block;
}
.page-hero h1{font-size:clamp(34px, 5.5vw, 58px); line-height:1.1; max-width:780px; color:var(--white);}
.page-hero h1 em{font-style:italic; color:var(--purple); font-weight:500;}
.page-hero p{margin-top:24px; font-size:17px; color:var(--grey); max-width:540px;}

.hero-actions{margin-top:36px; display:flex; gap:16px; align-items:center; flex-wrap:wrap;}
.btn-primary{
  background:var(--purple); color:var(--white); text-decoration:none;
  padding:14px 28px; border-radius:100px; font-weight:600; font-size:15px;
  display:inline-block; transition:transform .2s ease, background .2s ease;
}
.btn-primary:hover{background:#8f5eff; transform:translateY(-1px);}
.btn-ghost{
  color:var(--grey); text-decoration:none; font-size:14px; font-weight:500;
  border-bottom:1px solid var(--grey-line); padding-bottom:2px;
}

.slash-divider{width:100%; height:56px; position:relative;}
.slash-divider svg{width:100%; height:100%; display:block;}

section{padding:88px 0;}
.section-head{max-width:620px; margin-bottom:52px;}
.section-head .eyebrow{margin-bottom:16px;}
.section-head h2{font-size:clamp(26px,4vw,36px); color:var(--white);}
.section-head p{color:var(--grey); margin-top:14px; font-size:16px;}

.item-list{border-top:1px solid var(--grey-line);}
.item{
  display:grid; grid-template-columns:60px 1fr; gap:24px;
  padding:28px 0; border-bottom:1px solid var(--grey-line);
}
.item .num{font-family:'Fraunces'; color:var(--purple); font-size:20px; font-weight:500;}
.item h3{font-size:19px; font-weight:600; font-family:'Inter'; color:var(--white); margin-bottom:6px;}
.item p{color:var(--grey); font-size:15px; max-width:560px;}

.proof-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--grey-line); border:1px solid var(--grey-line);
}
.proof-cell{background:var(--ink); padding:32px 26px;}
.proof-cell .big{font-family:'Fraunces'; font-size:36px; color:var(--purple); font-weight:500;}
.proof-cell .label{color:var(--grey); font-size:13px; margin-top:8px;}
@media (max-width:640px){.proof-grid{grid-template-columns:1fr;}}

.quote{
  margin-top:48px; padding-left:24px; border-left:2px solid var(--purple);
  font-family:'Fraunces'; font-size:21px; font-style:italic; color:var(--white);
  max-width:640px;
}

.story p{color:var(--grey); font-size:16px; max-width:660px; margin-bottom:20px;}
.story p strong{color:var(--white); font-weight:600;}

.cta-section{
  background:var(--ink-2); border-top:1px solid var(--grey-line);
  text-align:center; padding:110px 0;
}
.cta-section h2{font-size:clamp(28px,4.5vw,42px); max-width:600px; margin:0 auto 18px;}
.cta-section p{color:var(--grey); font-size:16px; margin-bottom:32px;}
.contact-note{color:var(--grey); font-size:14px; margin-top:24px; max-width:420px; margin-left:auto; margin-right:auto;}

footer{padding:36px 0 24px; border-top:1px solid var(--grey-line);}
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  color:var(--grey); font-size:13px; flex-wrap:wrap; gap:16px; margin-bottom:20px;
}
.footer-legal{
  display:flex; gap:20px; flex-wrap:wrap; padding-top:16px;
  border-top:1px solid var(--grey-line);
}
.footer-legal a{font-size:12px; color:var(--grey); text-decoration:none;}
.footer-legal a:hover{color:var(--white);}

/* --- services preview cards (home) --- */
.services-preview{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--grey-line); border:1px solid var(--grey-line);}
.preview-card{background:var(--ink); padding:32px 28px; display:flex; flex-direction:column; gap:14px;}
.preview-card .pnum{color:var(--purple); font-family:'Fraunces'; font-size:15px; font-weight:600;}
.preview-card h3{font-size:18px; color:var(--white); font-weight:600; font-family:'Inter';}
.preview-card p{color:var(--grey); font-size:14px; flex-grow:1;}
.preview-card a{font-size:13px; color:var(--purple); text-decoration:none; font-weight:600;}
@media (max-width:640px){.services-preview{grid-template-columns:1fr;}}

/* --- ideal client checklist --- */
.check-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px 32px; margin-top:8px;}
.check-item{display:flex; gap:12px; align-items:flex-start; color:var(--grey); font-size:15px;}
.check-item .mark{color:var(--purple); font-weight:700; flex-shrink:0;}
@media (max-width:640px){.check-grid{grid-template-columns:1fr;}}

/* --- add-ons --- */
.addon-list{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--grey-line); border:1px solid var(--grey-line); margin-top:8px;}
.addon{background:var(--ink); padding:24px 26px;}
.addon h4{font-size:16px; color:var(--white); font-weight:600; margin-bottom:6px;}
.addon p{color:var(--grey); font-size:14px;}
@media (max-width:640px){.addon-list{grid-template-columns:1fr;}}

/* --- FAQ (native details/summary, no JS needed) --- */
.faq-list{border-top:1px solid var(--grey-line);}
.faq-item{border-bottom:1px solid var(--grey-line);}
.faq-item summary{
  padding:22px 0; cursor:pointer; font-weight:600; font-size:16px; color:var(--white);
  list-style:none; display:flex; justify-content:space-between; align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; color:var(--purple); font-size:20px; font-weight:400;}
.faq-item[open] summary::after{content:"\2212";}
.faq-item p{color:var(--grey); font-size:15px; padding-bottom:22px; max-width:640px;}

/* --- timeline (About page) --- */
.timeline{border-left:2px solid var(--grey-line); margin-top:12px; padding-left:32px;}
.tl-item{position:relative; padding-bottom:36px;}
.tl-item:last-child{padding-bottom:0;}
.tl-item::before{
  content:""; position:absolute; left:-39px; top:4px;
  width:12px; height:12px; border-radius:50%; background:var(--purple);
  border:3px solid var(--ink);
}
.tl-item .tl-year{color:var(--purple); font-family:'Fraunces'; font-size:15px; font-weight:600; margin-bottom:4px;}
.tl-item h3{font-size:17px; color:var(--white); font-weight:600; font-family:'Inter'; margin-bottom:6px;}
.tl-item p{color:var(--grey); font-size:14px; max-width:520px;}

/* --- founder section --- */
.founder-block{display:grid; grid-template-columns:120px 1fr; gap:28px; align-items:flex-start; margin-top:8px;}
.founder-avatar{
  width:100px; height:100px; border-radius:50%; border:2px solid var(--purple);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces'; font-size:32px; color:var(--purple); background:var(--ink-2);
}
.founder-block h3{font-size:19px; color:var(--white); margin-bottom:4px;}
.founder-role{color:var(--grey); font-size:13px; margin-bottom:14px; display:block;}
.founder-block p{color:var(--grey); font-size:15px; max-width:560px;}
@media (max-width:640px){.founder-block{grid-template-columns:1fr;}}

/* --- placeholder note (dev-only visual cue, remove if desired) --- */
.enable-later-note{
  border:1px dashed var(--grey-line); border-radius:10px; padding:20px 24px;
  color:var(--grey); font-size:13px; font-style:italic;
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
}
