:root{
  --bg0:#0b0f12;
  --bg1:#11181e;
  --panel:#2b343c;
  --panel2:#36414a;
  --line:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --muted2:rgba(255,255,255,.48);
  --accent:#19d3c5;
  --accent2:#7aa7a3;
  --sand:#caa87a;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --r1:18px;
  --r2:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(25,211,197,.14), transparent 55%),
    radial-gradient(1000px 600px at 80% 0%, rgba(202,168,122,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
small{color:var(--muted2)}
hr{border:0; border-top:1px solid var(--line); margin:22px 0}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}
.section{padding:72px 0}
.section.tight{padding:44px 0}
.section.top{padding-top:38px}
.section.bottom{padding-bottom:92px}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,18,.62);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-badge{
  width:34px; height:34px;
  border-radius:12px;
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(25,211,197,.55), transparent 65%),
    radial-gradient(18px 18px at 70% 75%, rgba(202,168,122,.35), transparent 70%),
    linear-gradient(145deg, rgba(54,65,74,.9), rgba(43,52,60,.9));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav-links a{padding:10px 10px; border-radius:12px}
.nav-links a.active,
.nav-links a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  transition: transform .12s ease, background .12s ease, border .12s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.075); border-color: rgba(255,255,255,.14)}
.btn.primary{
  background: linear-gradient(135deg, rgba(25,211,197,.22), rgba(25,211,197,.06));
  border-color: rgba(25,211,197,.35);
}
.btn.primary:hover{border-color: rgba(25,211,197,.55)}
.btn.sand{
  background: linear-gradient(135deg, rgba(202,168,122,.20), rgba(202,168,122,.06));
  border-color: rgba(202,168,122,.35);
}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.grid-2{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:center}
@media (max-width: 920px){ .grid-2{grid-template-columns:1fr; gap:18px} }

.hero h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:14px 0 14px;
  letter-spacing:-.6px;
}
.hero p{
  color:var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height:1.6;
  margin: 0 0 18px;
  max-width: 60ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
  color:var(--muted2);
  font-weight:600;
  font-size:14px;
}
.kicker span{display:inline-flex; align-items:center; gap:10px}
.dot{
  width:7px; height:7px;
  border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(25,211,197,.12);
}
.dot.sand{background: var(--sand); box-shadow: 0 0 0 4px rgba(202,168,122,.12)}
.dot.gray{background: rgba(255,255,255,.22); box-shadow:none}

.card{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(54,65,74,.85), rgba(43,52,60,.92));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.card.pad{padding:22px}
.card.soft{
  background: rgba(54,65,74,.65);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
}
.card-title{
  font-weight:800;
  letter-spacing:-.2px;
  margin:0 0 10px;
}
.muted{color:var(--muted)}
.muted2{color:var(--muted2)}

.feature-grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.feature{grid-column: span 6; padding:18px}
.feature h3{margin:0 0 8px; font-size:18px}
.feature p{margin:0; color:var(--muted); line-height:1.55}
@media (max-width: 900px){ .feature{grid-column: span 12} }

.how{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:16px;
}
.step{padding:18px}
.step .n{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px; height:34px;
  border-radius:14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  font-weight:900;
}
.step h4{margin:12px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.55}
@media (max-width: 980px){ .how{grid-template-columns:1fr 1fr} }
@media (max-width: 540px){ .how{grid-template-columns:1fr} }

.screens{
  position:relative;
  height: 520px;
}
@media (max-width: 920px){ .screens{height: 520px} }
@media (max-width: 520px){ .screens{height: 520px} }

.phone{
  position:absolute;
  width: 250px;
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
  background: rgba(0,0,0,.22);
}
.phone img{
  display:block;
  width:100%;
  height:auto;
}

.phone.p1{left: 4%; top: 40px; transform: rotate(-2deg)}
.phone.p2{left: 26%; top: 0; transform: rotate(1deg)}
.phone.p3{left: 52%; top: 60px; transform: rotate(-1deg)}
.phone.p4{left: 74%; top: 18px; transform: rotate(2deg)}
@media (max-width: 920px){
  .phone{width: 230px}
  .phone.p1{left: 0; top: 90px}
  .phone.p2{left: 18%; top: 10px}
  .phone.p3{left: 46%; top: 110px}
  .phone.p4{left: 70%; top: 30px}
}
@media (max-width: 640px){
  .screens{height: 740px}
  .phone{width: 240px}
  .phone.p1{left: 0; top: 20px}
  .phone.p2{left: 48%; top: 0}
  .phone.p3{left: 0; top: 380px}
  .phone.p4{left: 48%; top: 360px}
}

.footer{
  padding:28px 0 42px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:14px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footer-grid{display:flex; gap:18px; flex-wrap:wrap; justify-content:space-between; align-items:center}

.form{
  display:grid;
  gap:12px;
}
.input{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.input::placeholder{color: rgba(255,255,255,.40)}
.note{
  font-size:13px;
  color:var(--muted2);
  line-height:1.5;
}

.badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  font-weight:800;
  font-size:13px;
  color:var(--muted);
}
.badge strong{color:var(--text)}

/* ---- ADB spacing overrides (cards/bubbles) ---- */
.card {
  padding: 18px;
}

.card h2, .card h3 {
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.card p {
  margin: 0 0 10px 0;
  line-height: 1.45;
}

.card p:last-child {
  margin-bottom: 0;
}

/* If your "What it helps you do" uses .cards grid */
.cards {
  gap: 14px;
}

.pill {
  margin-bottom: 14px;
}

/* ---- ADB FIX: card padding + spacing (force) ---- */
.card{
  padding: 20px !important;
}

.card h1,.card h2,.card h3{
  margin: 0 0 10px 0 !important;
  line-height: 1.2 !important;
}

.card p{
  margin: 0 0 10px 0 !important;
  line-height: 1.5 !important;
}

.card p:last-child{
  margin-bottom: 0 !important;
}

/* Ensure stacked cards are not touching */
.cards{
  display: grid !important;
  gap: 16px !important;
}

/* If any sections are just cards one after another, give them breathing room */
.card + .card{
  margin-top: 16px !important;
}

/* Give the page container some side padding so nothing hugs the viewport */
.container{
  padding-left: 18px !important;
  padding-right: 18px !important;
}
/* App page: shrink screenshot images to 25% size */
.app-page img.app-shot {
  width: 25% !important;
  max-width: 25% !important;
  height: auto !important;
  display: block;
}
