:root{
  /* Palette: "Slate + Mint" (lighter, still professional) */
  --bg:#f6f7fb;
  --panel:#ffffff;
  --panel2:#f1f5f9;
  --text:#0f172a;
  --muted:#5b6475;
  --line:#e6edf7;
  --brand:#16a34a;
  --brand2:#22c55e;
  --link:#2563eb;
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(34,197,94,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(37,99,235,.10), transparent 55%),
    linear-gradient(180deg, #fbfcff, var(--bg));
  color:var(--text);
}

a{color:inherit}

.container{max-width:1040px;margin:0 auto;padding:0 20px}
.container.wide{max-width:1200px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,247,251,.75);
  border-bottom:1px solid rgba(219,227,239,.9);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(34,197,94,.9), rgba(147,197,253,.35));
  color:#04120a;
  font-weight:800;
}
.brand-name{font-weight:750;letter-spacing:.2px}

.nav{display:flex;align-items:center;gap:12px}
.nav-links{display:flex;gap:14px;align-items:center}
.nav-links a{color:var(--muted);text-decoration:none;font-weight:650;font-size:14px}
.nav-links a:hover{color:var(--text)}

.nav-cta{
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #0f172a !important;
  box-shadow: 0 10px 22px rgba(22,163,74,.14);
}
.nav-cta:hover{background: rgba(34,197,94,.16)}

.nav-toggle{
  display:none;
  border:1px solid rgba(219,227,239,.95);
  background: rgba(255,255,255,.7);
  color: var(--text);
  padding:8px 10px;
  border-radius:10px;
  font-weight:700;
}

.hero{padding:56px 0 34px}
.hero-inner{display:grid;grid-template-columns:1.35fr .65fr;gap:22px;align-items:start}
.hero h1{font-size:44px;line-height:1.05;margin:0 0 12px}
.lead{font-size:18px;color:var(--muted);margin:0 0 18px;max-width:55ch}
.micro{color:var(--muted);font-size:13px;margin:10px 0 0;max-width:70ch}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,245,249,.92));
  border:1px solid rgba(219,227,239,.95);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.hero-card-title{font-size:12px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.09em;margin-bottom:10px}
.hero-card-item .kicker{font-size:12px;color:var(--muted)}
.hero-card-item .name{font-weight:800;margin-top:2px}
.hero-card-item .meta{font-size:13px;color:var(--muted);margin-top:3px}

.section{padding:46px 0}
.section.alt{background: rgba(241,245,249,.65); border-top:1px solid rgba(219,227,239,.65); border-bottom:1px solid rgba(219,227,239,.65)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px;font-size:28px}
.sub{margin:0;color:var(--muted);max-width:80ch}

.cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.cards.secondary{grid-template-columns: 1fr; max-width: 680px; opacity:.92}

/* Product (full-width) */
.product{
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(241,245,249,.84));
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.product-primary{margin: 14px 0 18px}
.product-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.product-kicker{font-size:12px;color:var(--muted);font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.product-title{margin:6px 0 10px;font-size:28px;letter-spacing:-.01em}
.product-sub{margin:0;color:var(--muted);max-width:80ch}

.product-cta{display:flex;flex-direction:column;gap:10px;align-items:flex-end;min-width: 180px}
.price{font-weight:900;font-size:28px;line-height:1;color:#bbf7d0}
.price span{font-size:14px;color:var(--muted);font-weight:800}

.product-body{display:flex;flex-direction:column; gap:18px; margin-top:18px}

.purchase-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px}

.story p{margin:0 0 10px; color: var(--text)}
.story em{color:#c7d2fe}
.story strong{color: var(--text)}

.highlights{display:grid;grid-template-columns: 1fr; gap:12px}
.highlight{
  background: rgba(255,255,255,.82);
  border:1px solid transparent;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}
.h-title{font-weight:900; margin-bottom:8px}
.highlight ul{margin:0; padding-left:18px; color: var(--muted)}
.highlight li{margin:7px 0}
.highlight code{color:#c7d2fe; font-weight:800}

.icon-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top: 10px;
}
.icon-grid.usecases{margin-top: 12px}

.icon-intro{
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(37,99,235,.06));
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.icon-intro-title{font-weight:950}
.icon-intro-body{display:flex;gap:14px;flex-wrap:wrap;color:var(--muted);font-size:13px}
.icon-intro-body strong{color:var(--text)}

.icon-card{
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.icon{
  width:34px;height:34px;
  border-radius: 12px;
  display:grid;place-items:center;
  background: rgba(34,197,94,.14);
  border:1px solid transparent;
  color: #0f172a;
  margin-bottom: 10px;
  box-shadow: 0 10px 22px rgba(22,163,74,.18);
}
.icon-title{font-weight:900;margin:0 0 6px}
.icon-desc{color:var(--muted); font-size:13px; line-height:1.35}

.deliverables{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.deliverable{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.deliverable-icon{
  width:34px;height:34px;
  border-radius: 12px;
  display:grid;place-items:center;
  background: rgba(37,99,235,.10);
  border:1px solid transparent;
  color: #0f172a;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}
.deliverable-title{font-weight:950;margin:0 0 4px}
.deliverable-desc{color:var(--muted);font-size:13px;line-height:1.35}

@media (max-width: 860px){
  .icon-grid{grid-template-columns: 1fr}
  .deliverables{grid-template-columns: 1fr}
  .icon-intro{flex-direction:column;align-items:flex-start}
}

.showcase{display:flex;flex-direction:column;gap:14px}
.showcase-head{padding:4px 2px 8px}
.showcase-head .h-title{margin-bottom:6px}
.showrow{display:grid;grid-template-columns: 1fr 1fr; gap:14px; align-items:center}
.showrow.reverse .shot{order:2}
.showrow.reverse .showtext{order:1}
.showtext{padding:8px 4px}

.shot{
  margin:0;
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
}
.shot{padding:12px}
.shot img{
  display:block;
  width:100%;
  max-width: 100%;
  height:420px;
  object-fit: contain;
  object-position: center;
  background: #0b1220;
  border-radius: 12px;
  border:1px solid transparent;
  box-shadow: 0 18px 40px rgba(2,6,23,.14);
}
.shot figcaption{
  margin-top:10px;
  padding:10px 12px;
  color:var(--muted);
  font-size:13px;
  background: rgba(241,245,249,.72);
  border:1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

@media (max-width: 860px){
  .shot img{height:300px}
}

@media (max-width: 860px){
  .showrow{grid-template-columns: 1fr}
}

.purchase{
  grid-column: 1 / -1;
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.purchase ol{margin:8px 0 0; padding-left:18px; color: var(--muted)}
.purchase li{margin:8px 0}

.snippet{margin-top:12px}
.snippet pre{margin:10px 0 0; padding:12px; border-radius:14px; overflow:auto;
  background: #0b1220; border:1px solid rgba(230,237,247,.22);
  box-shadow: 0 16px 34px rgba(2,6,23,.12);
}
.snippet code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 12px; color:#dbeafe}

.card{
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.10);
}
.card.muted{background: rgba(241,245,249,.62)}
.card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.card h3{margin:0 0 6px;font-size:18px}
.card-desc{margin:0;color:var(--muted)}

.pill{
  font-size:12px;
  font-weight:800;
  background: rgba(34,197,94,.12);
  color: #bbf7d0;
  border:1px solid rgba(34,197,94,.25);
  padding:6px 10px;
  border-radius: 999px;
  white-space:nowrap;
}

.bullets{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.bullets.compact{margin-top:10px}
.bullets li{margin:7px 0}
.bullets.compact li{margin:6px 0}
.bullets strong{color:var(--text)}

.proof{
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(34,197,94,.06));
  border:1px solid transparent;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.proof-card{
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}
.proof-kicker{font-size:12px;color:var(--muted);font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.proof-title{margin:8px 0 8px;font-weight:950;font-size:16px}
.proof-desc{margin:0;color:var(--muted)}

@media (max-width: 860px){
  .proof-grid{grid-template-columns:1fr}
}

.card-actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}

.grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}

.docs-grid{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.steps{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.steps li{margin:10px 0}
.steps strong{color:var(--text)}
.steps.compact li{margin:6px 0}

.minihead{margin:16px 0 0; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted)}

.narrative p{margin:10px 0; color: var(--muted)}
.narrative strong{color: var(--text)}

.steps-strip{display:grid;grid-template-columns: repeat(4, minmax(0, 1fr));gap:10px;margin-top:12px}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.step-icon{
  width:30px;height:30px;
  border-radius: 10px;
  display:grid;place-items:center;
  background: rgba(34,197,94,.14);
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(22,163,74,.16);
  font-weight:900;
  flex: 0 0 auto;
}
.step-title{font-weight:950;margin:0 0 4px}
.step-desc{color:var(--muted);font-size:13px;line-height:1.35}

@media (max-width: 980px){
  .steps-strip{grid-template-columns: 1fr 1fr}
}
@media (max-width: 640px){
  .steps-strip{grid-template-columns: 1fr}
}

.details{margin-top:14px; border:1px solid transparent; border-radius: var(--radius); background: rgba(255,255,255,.92); padding:10px 12px; box-shadow: 0 16px 34px rgba(2,6,23,.10)}
.details summary{cursor:pointer; font-weight:900; color:var(--text)}
.details summary::marker{color:var(--muted)}
.details-body{padding-top:10px}
.details code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 12px; color:#1d4ed8}
.details ul ul{margin-top:6px}


.legal-links{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.link{color:var(--link);text-decoration:none;font-weight:650}
.link:hover{text-decoration:underline}

.contact-box{
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}

.signup{
  background: rgba(255,255,255,.92);
  border:1px solid transparent;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.signup-form{max-width: 720px}
.signup-label{display:block;font-weight:800;margin-bottom:8px}
.signup-row{display:flex;gap:10px;align-items:center}
.signup-input{
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(241,245,249,.85);
  box-shadow: inset 0 0 0 1px rgba(230,237,247,.95);
  font-size: 15px;
}
.signup-input:focus{outline:none;box-shadow: inset 0 0 0 2px rgba(34,197,94,.35)}
.signup-consent{display:flex;gap:10px;align-items:flex-start;margin-top:10px;color:var(--muted);font-size:13px}
.signup-note{margin-top:10px}

@media (max-width: 640px){
  .signup-row{flex-direction:column;align-items:stretch}
}

.footer{padding:24px 0;color:var(--muted)}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px;border-top:1px solid rgba(34,48,74,.55);padding-top:16px}
.footer-links a{color:var(--muted);text-decoration:none}
.footer-links a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(219,227,239,.95);
  background: rgba(255,255,255,.8);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}
.btn:hover{border-color: rgba(37,99,235,.25)}
.btn.primary{background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(22,163,74,.85)); color:#04120a; border-color: rgba(34,197,94,.35)}
.btn.small{padding:8px 10px;border-radius:10px;font-size:13px}

@media (max-width: 860px){
  .hero-inner{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .product-head{flex-direction:column; align-items:flex-start}
  .product-cta{align-items:flex-start}
}

@media (max-width: 640px){
  .nav-toggle{display:inline-flex}
  .nav-links{
    display:none;
    position:absolute;
    right:20px;
    top:56px;
    flex-direction:column;
    background: rgba(11,14,20,.98);
    border:1px solid rgba(34,48,74,.8);
    border-radius: 14px;
    padding:10px;
    min-width: 210px;
    box-shadow: var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:10px 10px;border-radius:10px}
  .nav-links a:hover{background: rgba(17,24,39,.8)}
}
