/* Pluto Platform v8 — larger cards, less empty space, premium SaaS layout */

:root{
  --bg:#e5e7eb;              /* soft gray */
  --panel:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --blue:#2563eb;
  --navy:#1e3a8a;
  --teal:#14b8a6;
  --purple:#7c3aed;
  --sky:#0ea5e9;
  --shadow: 0 18px 40px rgba(2,6,23,.12);
  --shadow2: 0 10px 25px rgba(2,6,23,.10);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
}

a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
}

/* Top nav */
.topnav{
  position:sticky;
  top:0;
  z-index:5;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.nav-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.brand-logo{width:34px; height:34px}
.brand-name{letter-spacing:.06em; color:var(--navy)}
.navlinks{display:flex; gap:14px; margin-left:auto; flex-wrap:wrap; align-items:center}
.navlinks a{
  font-weight:700;
  color:var(--navy);
  padding:8px 10px;
  border-radius:999px;
}
.navlinks a.active, .navlinks a:hover{
  background:rgba(37,99,235,.10);
  text-decoration:none;
}
.cta{
  background:var(--blue);
  color:white;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  box-shadow: 0 14px 26px rgba(37,99,235,.20);
}
.cta:hover{filter:brightness(.98); text-decoration:none}

/* Hero */
.hero{
  background: radial-gradient(circle at 20% 10%, rgba(37,99,235,.18), rgba(255,255,255,0) 45%),
              radial-gradient(circle at 80% 0%, rgba(20,184,166,.12), rgba(255,255,255,0) 44%);
  padding:34px 0 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.kicker{
  margin:0 0 10px;
  font-weight:800;
  color:var(--navy);
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.08;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width:620px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--blue);
  color:white;
  box-shadow: 0 14px 26px rgba(37,99,235,.18);
}
.btn-primary:hover{text-decoration:none; filter:brightness(.98)}
.btn-ghost{
  background:rgba(255,255,255,.78);
  border-color:rgba(15,23,42,.14);
  color:var(--navy);
}
.btn-ghost:hover{text-decoration:none; background:white}

.trust-row{display:flex; gap:10px; flex-wrap:wrap}
.trust-pill{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.10);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:var(--navy);
}

/* Mock UI */
.mock{
  background:white;
  border-radius:22px;
  box-shadow: var(--shadow);
  border:1px solid rgba(15,23,42,.08);
  overflow:hidden;
}
.mock-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  background:rgba(30,58,138,.06);
  border-bottom:1px solid rgba(15,23,42,.08);
  font-weight:800;
  color:var(--navy);
  font-size:12px;
}
.dot{width:10px;height:10px;border-radius:999px;opacity:.9}
.dot-r{background:#ef4444}
.dot-y{background:#f59e0b}
.dot-g{background:#22c55e}
.mock-body{padding:14px}
.mock-card{
  background:rgba(37,99,235,.06);
  border:1px solid rgba(37,99,235,.14);
  border-radius:16px;
  padding:12px;
  margin-bottom:12px;
}
.mock-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.mock-mini{
  background:white;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px;
  box-shadow: var(--shadow2);
}
.mock-title{font-weight:800; color:var(--navy); margin-bottom:8px}
.mock-line{height:10px; border-radius:999px; background:rgba(15,23,42,.10); margin-bottom:8px}
.mock-line.short{width:70%}
.tiny{font-size:12px; color:#64748b}
.center{text-align:center}

/* Sections */
.section{padding:18px 0 22px}
.section-head{
  margin:0 0 16px;
}
.section-head h2, .section-head h1{margin:0 0 6px}
.section-head p{margin:0; color:var(--muted)}

/* Big cards grid */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.bigcard{
  position:relative;
  background:var(--panel);
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:22px;
  border:1px solid rgba(15,23,42,.08);
  min-height: 240px;
}
.bigcard-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:10px;
}
.icon{
  width:48px;height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:white;
  flex:0 0 auto;
  box-shadow: 0 12px 22px rgba(2,6,23,.12);
}
.icon-blue{background:linear-gradient(135deg, var(--blue), var(--navy))}
.icon-purple{background:linear-gradient(135deg, var(--purple), #4c1d95)}
.icon-teal{background:linear-gradient(135deg, var(--teal), #0f766e)}
.icon-sky{background:linear-gradient(135deg, var(--sky), #075985)}
.icon-navy{background:linear-gradient(135deg, var(--navy), #0b1f4b)}

.bigcard h3{margin:0 0 6px; font-size:18px}
.bigcard p{margin:0; color:var(--muted); line-height:1.45}

.bullets{
  margin:12px 0 0;
  padding:0 0 0 18px;
  color:var(--ink);
}
.bullets li{margin:6px 0; color:#0f172a}

.bigcard-highlight{
  border:2px solid rgba(37,99,235,.25);
  background: radial-gradient(circle at 20% 0%, rgba(37,99,235,.10), rgba(255,255,255,0) 55%), var(--panel);
}
.badge{
  position:absolute;
  top:14px;
  right:14px;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.20);
  color:var(--navy);
  font-weight:900;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
}
.note{
  margin-top:12px;
  background:rgba(30,58,138,.06);
  border:1px solid rgba(30,58,138,.12);
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.4;
}

.w100{width:100%}

/* CTA band */
.cta-band{
  margin-top:10px;
  padding:18px 0 26px;
}
.cta-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  background:white;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  padding:18px 18px;
  box-shadow: var(--shadow2);
}
.cta-inner h2{margin:0 0 6px}
.cta-inner p{margin:0; color:var(--muted)}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Pricing page */
.page{padding:20px 0 34px}
.pricingGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.priceCard{
  position:relative;
  background:white;
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:22px;
  border:1px solid rgba(15,23,42,.08);
}
.topbar{
  height:6px;
  background:var(--navy);
  border-radius:22px 22px 0 0;
  position:absolute;
  top:0; left:0; right:0;
}
.priceCard h2{margin:10px 0 10px}
.price{font-size:38px; font-weight:900; margin:10px 0}
.muted{color:var(--muted)}
.featured{border:2px solid rgba(37,99,235,.30)}

.contactCard{
  margin-top:18px;
  background:white;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow2);
}

/* Contact page */
.contactSplit{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:18px;
  align-items:start;
}
.formCard{
  background:white;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
label{display:block; font-weight:800; color:var(--navy); margin:10px 0 6px}
input, textarea, select{
  width:100%;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.18);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.footer{
  padding:18px 0;
  margin-top:18px;
  background:rgba(255,255,255,.85);
  border-top:1px solid rgba(15,23,42,.08);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-title{font-weight:900; color:var(--navy)}
.footer-sub{color:var(--muted); font-size:13px}
.footer-links{display:flex; gap:12px}
.footer-links a{font-weight:800; color:var(--navy)}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .pricingGrid{grid-template-columns:1fr}
  .cta-inner{flex-direction:column; align-items:flex-start}
  .contactSplit{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .nav-inner{flex-wrap:wrap}
  .navlinks{margin-left:0}
}
