/* Airo Studio Hosting - Static HTML5 Site
   Brand palette:
   Magenta #D81B8C
   Purple  #6A2C91
   Neutral #6F767C
   Light   #F4F6F8
*/

:root{
  --magenta:#D81B8C;
  --purple:#6A2C91;
  --text:#1b1f24;
  --muted:#6F767C;
  --bg:#ffffff;
  --soft:#F4F6F8;
  --border:rgba(27,31,36,.12);
  --shadow: 0 10px 30px rgba(27,31,36,.08);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--purple)}
img{max-width:100%;height:auto}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:72px 0}
.section.soft{background:var(--soft)}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:600; color:var(--purple);
  letter-spacing:.02em;
  margin-bottom:14px;
}
.kicker .dot{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(135deg,var(--magenta),var(--purple));
}

h1{font-size:44px; line-height:1.05; margin:0 0 14px}
h2{font-size:32px; line-height:1.15; margin:0 0 12px}
h3{font-size:18px; margin:0 0 6px}
p{margin:0 0 14px; color:rgba(27,31,36,.86)}
.small{font-size:14px;color:var(--muted)}
.lead{font-size:18px;color:rgba(27,31,36,.78);max-width:62ch}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:43px;width:auto}
.navlinks{
  display:flex; gap:22px; align-items:center;
}
.navlinks a{font-weight:600; color:rgba(27,31,36,.8)}
.navlinks a.active{color:var(--purple)}
.actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background:var(--magenta);
  color:white;
  box-shadow:0 12px 22px rgba(216,27,140,.22);
}
.btn.primary:hover{filter:saturate(1.05) brightness(0.98)}
.btn.outline{
  background:transparent;
  border-color:rgba(106,44,145,.35);
  color:var(--purple);
}
.btn.outline:hover{border-color:rgba(106,44,145,.6); background:rgba(106,44,145,.06)}
.btn.ghost{
  background:transparent;
  color:rgba(27,31,36,.72);
}
.btn.ghost:hover{background:rgba(27,31,36,.05); color:rgba(27,31,36,.88)}

.hero{
  padding:64px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero-card{
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.hero-card .stat{
  display:flex; justify-content:space-between; gap:12px;
  padding:12px 0;
  border-top:1px dashed rgba(27,31,36,.18);
}
.hero-card .stat:first-of-type{border-top:none}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(106,44,145,.08);
  color:var(--purple);
  font-weight:700;
}
.gradient-bar{
  height:10px; border-radius:999px;
  background:linear-gradient(90deg, var(--magenta), var(--purple));
  margin:14px 0 6px;
}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 8px 18px rgba(27,31,36,.05);
}
.card:hover{border-color:rgba(106,44,145,.28)}
.card .icon{
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(216,27,140,.10);
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(216,27,140,.14);
  margin-bottom:12px;
}
.card .icon svg{width:22px;height:22px; color:var(--magenta)}
.card .meta{color:var(--muted); font-size:14px}
.card a.more{display:inline-flex; gap:8px; align-items:center; font-weight:800; color:var(--purple)}
.card a.more:hover{color:var(--magenta)}

.pills{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:14px 0 0;
}
.pill{
  border:1px solid rgba(27,31,36,.10);
  background:white;
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  color:rgba(27,31,36,.70);
}

.compare{
  overflow:auto;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:white;
}
table{border-collapse:collapse; width:100%; min-width:720px}
th,td{padding:14px 14px; border-bottom:1px solid var(--border); text-align:left}
th{background:rgba(106,44,145,.06); color:var(--purple); font-weight:900}
tr:last-child td{border-bottom:none}
td .tag{
  display:inline-flex; padding:6px 10px; border-radius:999px; font-weight:800; font-size:13px;
  background:rgba(216,27,140,.10); color:var(--magenta); border:1px solid rgba(216,27,140,.18)
}

.cta{
  background:linear-gradient(135deg, rgba(216,27,140,.08), rgba(106,44,145,.10));
  border:1px solid rgba(106,44,145,.14);
  border-radius:calc(var(--radius) + 4px);
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:var(--shadow);
}

.footer{
  border-top:1px solid var(--border);
  padding:34px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:flex-start;
}
.footer a{color:rgba(27,31,36,.72); font-weight:700}
.footer a:hover{color:var(--purple)}
.footer .links{display:flex; gap:14px; flex-wrap:wrap}
.hr{height:1px;background:var(--border); margin:18px 0}
.notice{font-size:13px;color:rgba(27,31,36,.62)}

.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  background:white;
  border-radius:12px;
  padding:10px 12px;
}
.mobile-menu{
  display:none;
  padding:10px 0 18px;
}
.mobile-menu a{
  display:block;
  padding:12px 0;
  border-top:1px solid var(--border);
  font-weight:800;
  color:rgba(27,31,36,.86);
}

@media (max-width: 920px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .navlinks{display:none}
  .actions{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; gap:8px}
  .mobile-menu{display:block}
}
