/* ===== The AI Work OS — styles ===== */

:root{
  --bg: #f4f2ec;
  --bg-alt: #ecebe1;
  --card: #ffffff;
  --border: #e2ded2;
  --text: #17171a;
  --muted: #63625a;
  --olive: #545c33;
  --olive-dark: #3c421f;
  --blue: #2947f0;
  --blue-dark: #1c34c4;
  --dark: #17171a;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%;display:block;}
a{color:inherit;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
section{padding:72px 0;}
@media (max-width:720px){
  section{padding:44px 0;}
  .wrap{padding:0 18px;}
}

.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

h1,h2,h3{margin:0;font-weight:800;letter-spacing:-0.02em;}
p{margin:0;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--blue);
  color:#fff;
  border:none;
  border-radius:10px;
  padding:16px 28px;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:background .15s ease, transform .1s ease;
}
.btn:hover{background:var(--blue-dark);}
.btn:active{transform:translateY(1px);}
.btn-block{width:100%;}

.trust-row{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted);
  margin-top:14px;
}
.trust-row span{display:inline-flex;align-items:center;gap:6px;}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  color:var(--muted);
}
.badge.new{background:#eef0e2;color:var(--olive-dark);border-color:#d9dcc4;}

/* ---------- Header / Nav ---------- */
.site-header{
  border-bottom:1px solid var(--border);
  background:var(--bg);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:15px;
}
.logo .mark{
  width:26px;height:26px;border-radius:6px;
  background:var(--olive-dark);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:800;
}
.nav-links{
  display:flex;gap:28px;align-items:center;
  font-size:14px;font-weight:600;color:var(--muted);
}
.nav-links a{text-decoration:none;}
.nav-links a:hover{color:var(--text);}
.nav .btn{padding:11px 18px;font-size:14px;}
.nav-mobile-hide{display:flex;}
@media (max-width:820px){
  .nav-mobile-hide{display:none;}
}

/* ---------- Hero ---------- */
.hero{padding-top:56px;padding-bottom:56px;}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:32px;}
  .hero{padding-top:28px;}
}
.hero h1{
  font-size:44px;
  line-height:1.08;
  margin-bottom:16px;
}
@media (max-width:520px){
  .hero h1{font-size:30px;}
}
.hero .eyebrow{margin-bottom:14px;}
.hero .sub{
  font-size:17px;
  color:var(--muted);
  max-width:46ch;
  margin-bottom:16px;
}
.hero .proof{
  display:flex;align-items:center;gap:8px;
  font-size:14px;font-weight:600;color:var(--olive-dark);
  margin-bottom:22px;
}
.hero .proof svg{flex:none;}

.price-row{
  display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;
  margin-bottom:6px;
}
.price-old{
  font-size:20px;color:var(--muted);text-decoration:line-through;
}
.price-new{font-size:36px;font-weight:800;color:var(--blue);}
.price-caption{font-size:13px;color:var(--muted);margin-bottom:18px;}

.hero-cta{margin-bottom:6px;}

.included-badge{
  margin-top:18px;
  display:inline-flex;gap:16px;flex-wrap:wrap;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 18px;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
.included-badge span{display:inline-flex;align-items:center;gap:6px;}

/* ---------- Hero mockup ---------- */
.mockup{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 24px 60px -30px rgba(20,20,10,.35);
  overflow:hidden;
}
.mockup-topbar{
  display:flex;align-items:center;gap:6px;
  padding:10px 14px;border-bottom:1px solid var(--border);
  background:#faf9f5;
}
.mockup-topbar .dot{width:9px;height:9px;border-radius:50%;}
.mockup-topbar .dot:nth-child(1){background:#e5716a;}
.mockup-topbar .dot:nth-child(2){background:#e8b95f;}
.mockup-topbar .dot:nth-child(3){background:#7fb56a;}
.mockup-body{
  display:grid;
  grid-template-columns:150px 1fr;
  min-height:340px;
}
.mockup-side{
  border-right:1px solid var(--border);
  padding:16px 12px;
  font-size:12px;
  color:var(--muted);
  background:#faf9f5;
}
.mockup-side .side-title{font-weight:800;color:var(--text);font-size:13px;margin-bottom:14px;}
.mockup-side .side-item{
  padding:7px 8px;border-radius:6px;margin-bottom:2px;
}
.mockup-side .side-item.active{background:var(--bg-alt);color:var(--text);font-weight:700;}
.mockup-main{padding:18px;}
.mockup-main h4{font-size:15px;margin:0 0 4px;font-weight:800;}
.mockup-main .muted{font-size:12px;color:var(--muted);margin-bottom:14px;}
.mockup-cards{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
}
.mockup-card{
  border:1px solid var(--border);border-radius:8px;padding:10px;background:#fff;
}
.mockup-card .num{font-size:10px;color:var(--muted);font-weight:700;}
.mockup-card .title{font-size:12px;font-weight:700;margin-top:10px;}
@media (max-width:900px){
  .mockup-body{grid-template-columns:110px 1fr;}
}

/* ---------- Problem / Reframe ---------- */
.reframe-box{
  background:var(--bg-alt);
  border-radius:var(--radius);
  padding:40px;
}
.reframe-grid{
  display:grid;grid-template-columns:1fr auto 1fr;gap:32px;align-items:start;
}
@media (max-width:760px){
  .reframe-grid{grid-template-columns:1fr;gap:20px;}
  .reframe-arrow{display:none;}
}
.reframe-col h3{font-size:22px;margin-bottom:16px;}
.reframe-col.problem h3{color:var(--text);}
.reframe-col.reframe h3{color:var(--olive-dark);}
.reframe-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;}
.reframe-list li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:15px;color:var(--muted);
}
.reframe-list li svg{flex:none;margin-top:3px;}
.reframe-arrow{
  display:flex;align-items:center;justify-content:center;
  height:100%;color:var(--muted);
}

/* ---------- Components grid ---------- */
.section-head{max-width:640px;margin:0 auto 36px;text-align:left;}
.section-head h2{font-size:30px;margin-bottom:10px;}
.section-head p{color:var(--muted);font-size:16px;}

.components-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media (max-width:980px){
  .components-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .components-grid{grid-template-columns:1fr;}
}
.comp-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  display:flex;flex-direction:column;
}
.comp-card .num{
  font-size:12px;font-weight:800;color:var(--muted);margin-bottom:2px;
}
.comp-card h3{font-size:18px;margin-bottom:12px;}
.comp-preview{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:#faf9f5;
  padding:10px;
  margin-bottom:12px;
  min-height:130px;
}
.comp-card .caption{font-size:13px;color:var(--muted);margin-top:auto;}

/* mini tool audit table */
.mini-table{width:100%;border-collapse:collapse;font-size:10px;}
.mini-table th{
  text-align:left;font-weight:700;color:var(--muted);
  padding:3px 4px;border-bottom:1px solid var(--border);
  font-size:9px;text-transform:uppercase;letter-spacing:.03em;
}
.mini-table td{padding:4px;border-bottom:1px solid #f0efe8;color:var(--text);}
.mini-table .chk{color:var(--olive-dark);font-weight:800;text-align:center;}
.mini-table .dash{color:#c9c6ba;text-align:center;}

/* daily rules mini */
.mini-rules{display:flex;flex-direction:column;gap:6px;}
.mini-rule{
  display:flex;justify-content:space-between;align-items:center;
  font-size:11px;background:#fff;border:1px solid var(--border);border-radius:6px;
  padding:6px 8px;
}
.mini-rule .rule-num{color:var(--muted);font-weight:700;margin-right:6px;}
.mini-rule svg{color:var(--olive-dark);flex:none;}

/* boundary map mini */
.mini-rings{
  display:flex;align-items:center;justify-content:center;height:130px;
}
.rings{position:relative;width:110px;height:110px;}
.ring{
  position:absolute;border-radius:50%;border:1px solid var(--border);
  display:flex;align-items:flex-start;justify-content:center;
  font-size:8px;font-weight:700;color:var(--muted);padding-top:4px;
}
.ring.r1{width:110px;height:110px;top:0;left:0;background:#f4f2ec;}
.ring.r2{width:74px;height:74px;top:18px;left:18px;background:#e9e6d8;}
.ring.r3{width:38px;height:38px;top:36px;left:36px;background:var(--olive);color:#fff;align-items:center;padding-top:0;}

/* prompt vault mini */
.mini-folders{display:flex;flex-direction:column;gap:6px;}
.mini-folder{
  display:flex;justify-content:space-between;align-items:center;
  font-size:11px;background:#fff;border:1px solid var(--border);border-radius:6px;
  padding:6px 8px;color:var(--text);
}
.mini-folder .count{color:var(--muted);font-weight:700;}

/* ---------- How it works ---------- */
.how-head{text-align:center;margin-bottom:36px;}
.how-head .eyebrow{justify-content:center;}
.how-steps{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative;
}
@media (max-width:760px){
  .how-steps{grid-template-columns:1fr;}
}
.how-step{text-align:center;}
.how-step .circle{
  width:40px;height:40px;border-radius:50%;
  background:var(--olive-dark);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:16px;margin:0 auto 14px;
}
.how-step h4{font-size:16px;margin-bottom:6px;}
.how-step p{font-size:14px;color:var(--muted);}
.how-note{
  text-align:center;color:var(--muted);font-size:14px;margin-top:24px;max-width:52ch;margin-left:auto;margin-right:auto;
}

/* ---------- Closer look ---------- */
.closer-look{
  display:grid;grid-template-columns:1.2fr 1fr;gap:48px;align-items:start;
}
@media (max-width:860px){
  .closer-look{grid-template-columns:1fr;gap:28px;}
}
.closer-table-wrap{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:20px;
}
.closer-table-wrap .label{font-size:12px;color:var(--muted);margin-bottom:12px;}
table.full-table{width:100%;border-collapse:collapse;font-size:13px;}
table.full-table th{
  text-align:left;font-weight:700;color:var(--muted);font-size:11px;
  text-transform:uppercase;letter-spacing:.03em;
  padding:8px 6px;border-bottom:1px solid var(--border);
}
table.full-table td{padding:9px 6px;border-bottom:1px solid #f0efe8;}
table.full-table .chk{text-align:center;color:var(--olive-dark);font-weight:800;}
table.full-table .dash{text-align:center;color:#c9c6ba;}
.legend{display:flex;gap:22px;flex-wrap:wrap;margin-top:16px;font-size:12px;color:var(--muted);}
.legend b{color:var(--text);}
.closer-copy .eyebrow{margin-bottom:8px;}
.closer-copy h3{font-size:24px;margin-bottom:12px;}
.closer-copy p{color:var(--muted);font-size:15px;margin-bottom:16px;}
.checklist{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.checklist li{display:flex;gap:10px;align-items:flex-start;font-size:14px;}
.checklist li svg{flex:none;margin-top:2px;color:var(--olive-dark);}

/* ---------- FAQ ---------- */
.faq-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
}
@media (max-width:760px){
  .faq-grid{grid-template-columns:1fr;}
}
.faq-item{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:16px 18px;
}
.faq-item summary{
  cursor:pointer;font-weight:700;font-size:15px;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:10px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .chev{transition:transform .15s ease;color:var(--muted);flex:none;}
.faq-item[open] summary .chev{transform:rotate(180deg);}
.faq-item p{margin-top:10px;font-size:14px;color:var(--muted);line-height:1.55;}

/* ---------- Final CTA ---------- */
.final-cta{
  background:var(--bg-alt);
  border-radius:var(--radius);
  padding:32px 36px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.final-cta h3{font-size:22px;margin-bottom:4px;}
.final-cta .price-row{margin-bottom:0;}
.final-cta-right{display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.final-cta-price{text-align:left;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--dark);
  color:#c9c8c2;
  padding:36px 0;
  font-size:13px;
}
.footer-grid{
  display:flex;justify-content:space-between;align-items:flex-start;gap:24px;flex-wrap:wrap;
}
.footer-brand{display:flex;gap:10px;align-items:flex-start;max-width:340px;}
.footer-brand .mark{
  width:32px;height:32px;border-radius:7px;background:var(--olive);
  color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:11px;flex:none;
}
.footer-brand p{color:#9a988f;margin-top:4px;}
.footer-contact div{margin-bottom:6px;}
.footer-contact .req{color:#e0a94f;}
.footer-links{display:flex;gap:16px;}
.footer-links a{text-decoration:none;color:#c9c8c2;}
.footer-links a:hover{color:#fff;}
@media (max-width:700px){
  .footer-grid{flex-direction:column;}
}

/* utility */
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);}
