/* BrewWay Landing CSS (mobile-first, dark roast vibe) */

:root{
  --bg: #0b0706;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.52);
  --line: rgba(255,255,255,0.12);
  --accent: #f6a51a;
  --accent2:#ffcc66;
  --good:#7CFFB2;
  --radius: 18px;
}

*{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";
  background: radial-gradient(1200px 600px at 30% 10%, rgba(246,165,26,0.15), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(255,204,102,0.09), transparent 60%),
              radial-gradient(900px 600px at 50% 80%, rgba(255,255,255,0.04), transparent 60%),
              var(--bg);
  color: var(--text);
}

.bg-glow{
  position:fixed; inset:0;
  pointer-events:none;
  background: radial-gradient(600px 260px at 20% 0%, rgba(246,165,26,0.18), transparent 70%);
  filter: blur(12px);
  opacity: 0.8;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1180px; margin:0 auto; padding: 22px 16px 60px}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,7,6,0.65);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width:1180px; margin:0 auto;
  padding: 12px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(246,165,26,0.24), rgba(255,255,255,0.05));
  border:1px solid rgba(246,165,26,0.22);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.brand-text strong{display:block; letter-spacing:0.5px}
.brand-text small{display:block; margin-top:2px; color:var(--muted2); font-size:12px}

.nav-actions{display:flex; align-items:center; gap:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,0.22)}
.btn.primary{
  background: linear-gradient(135deg, rgba(246,165,26,0.95), rgba(255,204,102,0.85));
  color:#1a1007;
  border-color: rgba(246,165,26,0.55);
}
.btn.ghost{
  background: rgba(255,255,255,0.03);
}
.btn.link{
  padding: 10px 4px;
  border: none;
  background: transparent;
  color: var(--accent2);
  font-weight: 700;
}
.btn.big{padding: 12px 16px; border-radius: 16px; font-size: 15px}
.btn.small{padding: 10px 12px; border-radius: 14px; font-size: 13px}

.hero{padding: 18px 0 12px}
.hero-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 24px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.40);
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
}
@media (max-width: 980px){
  .hero-card{grid-template-columns: 1fr}
}

.hero-left{padding: 22px 22px 18px}
.hero-right{
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(600px 250px at 10% 20%, rgba(246,165,26,0.10), transparent 70%);
}
@media (max-width: 980px){
  .hero-right{border-left:none; border-top: 1px solid rgba(255,255,255,0.08)}
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}
.pill .dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(246,165,26,0.14);
}
.pill-live{
  margin-left:6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(124,255,178,0.14);
  border:1px solid rgba(124,255,178,0.22);
  color: rgba(124,255,178,0.95);
  font-weight: 800;
  letter-spacing:0.4px;
}
.pill-live.muted{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.accent{color: var(--accent2)}
.lead{
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 720px;
}

.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.micro{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 14px;
}
.micro-item{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  font-weight: 650;
}

.hero-badge{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
}
.badge-title{font-weight: 900; letter-spacing:0.3px}
.badge-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  font-weight: 750;
  color: rgba(255,255,255,0.82);
}
.badge-note{margin-top:10px; color: var(--muted2); font-size: 12.5px; line-height:1.45}

.hero-panel{
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.20));
  border-radius: 18px;
  padding: 14px;
}
.panel-title{font-weight: 900; font-size: 14px}
.panel-sub{margin-top:8px; color: var(--muted); font-size: 12.8px; line-height:1.45}
.panel-kpis{
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:10px; margin-top:12px;
}
.kpi{
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.kpi-num{font-weight: 950; font-size: 18px}
.kpi-label{color: var(--muted2); font-size: 12px; margin-top:2px}
.panel-cta{display:flex; align-items:center; gap:10px; margin-top:12px; flex-wrap:wrap}

.section{padding: 22px 0}
.section-head h2{
  margin:0; font-size: 22px; letter-spacing:-0.3px;
}
.section-head p{
  margin: 6px 0 0;
  color: var(--muted);
  line-height:1.5;
  max-width: 820px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 980px){ .cards{grid-template-columns: repeat(2,1fr)} }
@media (max-width: 620px){ .cards{grid-template-columns: 1fr} }

.card{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
.card-top{display:flex; align-items:flex-start; gap:10px}
.avatar{
  width:42px; height:42px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(246,165,26,0.12);
  border: 1px solid rgba(246,165,26,0.20);
  flex: 0 0 auto;
}
.card-title{flex:1}
.name{font-weight: 900; letter-spacing:-0.2px}
.meta{margin-top:3px; color: var(--muted2); font-size: 12px}
.dotsep{opacity:0.6; margin:0 6px}
.status{
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.78);
}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px}
.chip{
  font-size: 12px;
  font-weight: 750;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
}
.chip.mini{padding: 4px 8px; font-size: 11px}

.stats{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top: 12px}
.stat{
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.stat-num{font-weight: 950; font-size: 16px}
.stat-label{color: var(--muted2); font-size: 12px; margin-top:2px}

.progress{margin-top: 12px}
.progress-label{color: var(--muted2); font-size: 12px; margin-bottom: 8px}
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}
.fill{
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246,165,26,0.95), rgba(255,204,102,0.85));
  box-shadow: 0 10px 30px rgba(246,165,26,0.25);
}

.card-actions{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-top: 12px; flex-wrap:wrap;
}
.hint{color: var(--muted2); font-size: 12px}

/* Fresh list */
.fresh-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 760px){ .fresh-grid{grid-template-columns: 1fr} }

.fresh-card{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.fresh-name{font-weight: 900}
.fresh-meta{margin-top:6px; color: var(--muted2); font-size: 12px}
.fresh-right{min-width:120px; text-align:right}
.mini-bar{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}
.mini-fill{
  height:100%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246,165,26,0.9), rgba(255,204,102,0.7));
}
.mini-label{color: var(--muted2); font-size: 11px; margin-top:6px}

/* Features */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px){ .feature-grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 560px){ .feature-grid{grid-template-columns: 1fr} }

.feature{
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.f-ico{
  width:42px; height:42px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 10px;
}
.f-title{font-weight: 900}
.f-desc{margin-top:6px; color: var(--muted); font-size: 13px; line-height:1.45}

/* Templates */
.template-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px){ .template-grid{grid-template-columns: 1fr} }

.template{
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.template-preview{
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow:hidden;
  position: relative;
}
.tp-top{height: 26px; background: rgba(0,0,0,0.20)}
.tp-card{
  width: 82%;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  margin: 12px auto 0;
}
.tp-card.small{height: 36px; width: 72%}

.template-name{margin-top:10px; font-weight: 900}
.template-note{margin-top:6px; color: var(--muted); font-size: 13px}

.template-preview.t1{ background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.18)); }
.template-preview.t2{ background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(255,255,255,0.06)); }
.template-preview.t3{ background: radial-gradient(360px 160px at 20% 0%, rgba(120,255,178,0.16), transparent 70%), rgba(255,255,255,0.04); }

/* CTA band */
.cta-band{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(700px 260px at 10% 20%, rgba(246,165,26,0.12), transparent 70%),
              rgba(255,255,255,0.04);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
@media (max-width: 980px){ .cta-band{grid-template-columns: 1fr} }

.cta-band h3{margin:0; font-size: 20px; letter-spacing:-0.2px}
.cta-band p{margin: 8px 0 0; color: var(--muted); line-height:1.5}
.cta-list{margin: 12px 0 0; padding-left: 18px; color: rgba(255,255,255,0.80)}
.cta-list li{margin: 8px 0}
.cta-right{display:flex; flex-direction:column; gap:10px; justify-content:center}
.tiny{color: var(--muted2); font-size: 12px}

/* Footer */
.footer{margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10)}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
}
.foot-brand{display:flex; gap:12px; align-items:flex-start}
.foot-title{font-weight: 950; letter-spacing:0.3px}
.foot-sub{color: var(--muted2); margin-top: 2px}
.foot-note{color: var(--muted); margin-top: 8px; max-width: 420px; font-size: 13px; line-height:1.45}
.foot-links{display:flex; gap:14px; flex-wrap:wrap}
.foot-links a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  font-weight: 750;
  font-size: 13px;
}
.foot-bottom{margin-top: 18px; color: var(--muted2); font-size: 12px}


/* Share Box */
.share-box{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
}

.share-title{
  font-weight:900;
  margin-bottom:6px;
}

.share-desc{
  font-size:13px;
  color:rgba(255,255,255,0.7);
  margin-bottom:12px;
}

.share-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.share-btn{
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  cursor:pointer;
}

.share-btn.wa{
  background:rgba(37,211,102,0.18);
  border-color:rgba(37,211,102,0.35);
}

.share-btn.fb{
  background:rgba(24,119,242,0.18);
  border-color:rgba(24,119,242,0.35);
}

.share-btn.copy{
  background:rgba(246,165,26,0.18);
  border-color:rgba(246,165,26,0.35);
}
