:root{
  --bg0:#050409;
  --bg1:#07060a;

  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);

  --accent: #caa6ff;   /* lavender */
  --accent2:#ffd27a;   /* saffron */

  --radius: 18px;
  --max: 1120px;
  --shadow: 0 18px 44px rgba(0,0,0,.38);
}

*{ 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;
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 12% 15%, rgba(202,166,255,.14), transparent 60%),
    radial-gradient(900px 600px at 85% 12%, rgba(255,210,122,.10), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(202,166,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, var(--bg0) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity:.92; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header / nav */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,6,10,.55);
  border-bottom: 1px solid var(--border);
}

.nav{
  height: 68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  white-space: nowrap;
}

.brand img{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

nav{
  display:flex;
  gap: 14px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

nav a{
  padding: 10px 10px;
  border-radius: 12px;
}

nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

/* Buttons (keep as buttons; these should look clickable) */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 850;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.btn:hover{ background: rgba(255,255,255,.09); }

.btn.primary{
  border-color: rgba(202,166,255,.45);
  background: linear-gradient(135deg, rgba(202,166,255,.22), rgba(255,210,122,.16));
}

/* Shared page typography */
h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.7px;
}

h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.sub{
  margin:0;
  color: var(--muted);
  max-width: 74ch;
  font-size: 14px;
  line-height: 1.6;
}

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.card h3{
  margin: 8px 0 8px;
  font-size: 16px;
}

.card p{
  margin: 0;
  color: var(--muted);
  font-size: 13.8px;
  line-height: 1.6;
}

section{ padding: 38px 0; }

.sectionHead{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 16px;
}

/* Home page specific */
.homeHero{ padding: 70px 0 34px; }

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}

/* ✅ Make badge look like elegant text (not a pill) */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 0;                 /* remove pill padding */
  border: 0;                  /* remove outline */
  background: transparent;    /* remove fill */
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .18px;
}

/* Keep the dot as a subtle accent (not “buttony”) */
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,210,122,.96);
  box-shadow: 0 0 18px rgba(255,210,122,.22);
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.heroActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ✅ Replace chips with clean inline “meta list” */
.mini{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12px;
}

/* Remove the “button” look */
.mini span{
  padding: 0;                 /* no padding */
  border-radius: 0;           /* no pill */
  border: 0;                  /* no border */
  background: transparent;    /* no fill */
  opacity: .92;
}

/* Add tasteful separators */
.mini span::after{
  content: "·";
  margin-left: 10px;
  opacity: .55;
}

.mini span:last-child::after{
  content: "";
  margin: 0;
}

/* App card */
.appCard{
  padding: 18px;
  display:flex;
  gap: 16px;
  align-items: center;
}

.appIcon{
  width: 86px;
  height: 86px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  background: rgba(255,255,255,.03);
}

/* Stacked app card */
.appCard--stack{
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 22px 18px 18px;
}

/* Bigger icon */
.appIcon--xl{
  width: 280px;
  height: 280px;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

/* Centered meta */
.appMeta--center h3{
  margin: 4px 0 8px;
}

.appMeta--center p{
  margin: 0;
  max-width: 46ch;
}

.appMeta h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: .2px;
}

.appMeta p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.appLinks{
  padding: 0 18px 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Store badge */
.store-badge{ display:inline-block; line-height:0; }
.store-badge img{ height: 44px; width:auto; display:block; }

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

.shots{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.shot{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.shot img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  display:block;
}

.cap{
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Footer */
footer{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.foot{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.foot a{ color: rgba(255,255,255,.78); }
.foot a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 940px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .shots{ grid-template-columns: 1fr; }
  nav{ display:none; }
}
