:root{
  --bg:#0b1220;
  --card:#0f1a2f;
  --text:#e9eefb;
  --muted:#b8c4e3;
  --line:rgba(255,255,255,.10);
  --accent:#f59e0b;
  --accent2:#60a5fa;
  --ok:#22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(96,165,250,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(245,158,11,.14), transparent 55%),
              linear-gradient(180deg, #070c16 0%, var(--bg) 55%, #070c16 100%);
  color:var(--text);
}
a{color:inherit}

.wrap{max-width:var(--max); margin:0 auto; padding: 0 18px;}
.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:nowrap;
}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.55);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap{padding: 12px 18px;}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  flex:0 0 auto;
  min-width: 210px;
}
.logo{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(96,165,250,.85));
  display:grid; place-items:center;
  font-weight:900; color:#061022;
}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.brandName{font-weight:900; font-size:14px}
.brandTag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
  flex:1 1 auto;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.nav::-webkit-scrollbar{display:none}

.pill{
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration:none;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  transition: .15s ease;
  font-size: 12px;
  white-space:nowrap;
  flex:0 0 auto;
}
.pill:hover{transform: translateY(-1px); color:var(--text); border-color: rgba(245,158,11,.35)}
.pill.is-active{border-color: rgba(245,158,11,.45); color:var(--text); background: rgba(245,158,11,.08);}

.navCtas{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(245,158,11,.35);
  background: linear-gradient(135deg, rgba(245,158,11,.98), rgba(245,158,11,.78));
  color:#0b1220;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  box-shadow: 0 18px 60px rgba(245,158,11,.18);
  transition: .15s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px)}
.btn.alt{
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
  box-shadow:none;
  padding: 8px 12px;
  font-size:13px;
}

section{padding: 28px 0;}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.pad{padding: 22px;}
h1{margin: 0 0 10px; font-size: clamp(26px, 3.4vw, 44px); line-height:1.06; letter-spacing:-.6px}
h2{margin: 0 0 10px; font-size: 22px; letter-spacing:-.3px}
h3{margin: 0 0 8px; font-size: 16px}
.p{margin:0; color: var(--muted); line-height:1.7; font-size: 14px}
.lead{color: var(--muted); line-height:1.65; font-size: 15px; max-width: 78ch}

.grid2{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:stretch}
.grid3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px}
@media (max-width: 920px){
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .topbar .wrap{padding: 12px 16px;}
  .row{flex-wrap:wrap;}
  .brand{min-width:unset; width:100%;}
  .nav{order:3; width:100%; justify-content:flex-start; padding-bottom:2px;}
  .navCtas{order:2; width:100%; justify-content:flex-start; flex-wrap:wrap;}
}
@media (max-width: 640px){
  .brandTag{display:none}
  .nav{gap:6px}
  .pill{padding:8px 9px; font-size:12px}
  .btn{padding:10px 12px; font-size:13px}
  .btn.alt{padding:8px 10px; font-size:12px}
}
.block{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(96,165,250,.35);
  background: rgba(96,165,250,.10);
  color: #dbeafe;
  font-weight:700;
  font-size: 12px;
}

.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 12px;
}
.chip.ok{border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.10); color:#d1fae5}
.chip.warn{border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.10); color:#ffedd5}
.chip.blue{border-color: rgba(96,165,250,.35); background: rgba(96,165,250,.10); color:#dbeafe}

.quotes{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px}
@media (max-width: 980px){ .quotes{grid-template-columns:1fr 1fr} }
@media (max-width: 560px){ .quotes{grid-template-columns:1fr} }
.quote{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.stars{letter-spacing:1px; color:#ffd38a; font-size: 12px; margin-bottom: 8px}
.quote p{margin:0; color: var(--text); line-height:1.65; font-size: 14px}
.quote footer{
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.form{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 720px){ .form{grid-template-columns:1fr} }
.field{display:flex; flex-direction:column; gap:6px}
label{font-size:12px; color: var(--muted)}
input, textarea, select{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height: 120px; resize: vertical}
.full{grid-column: 1 / -1}
.fine{color: var(--muted); font-size: 12px; margin-top: 10px}

.notice{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border:1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.10);
  color:#d1fae5;
}

.footer{
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.footerRow{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.fTitle{font-weight:900; color: var(--text)}
.fMuted{margin-top:4px}
.fLinks{display:flex; gap:12px; flex-wrap:wrap}
.fLinks a{color: var(--muted); text-decoration:none}
.fLinks a:hover{color: var(--text)}
.fBottom{margin-top:12px}

img{max-width:100%;display:block}
.heroActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.sectionHead{display:flex;justify-content:space-between;align-items:end;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.productGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (max-width:980px){.productGrid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.productGrid{grid-template-columns:1fr}}
.productCard{border:1px solid var(--line);background:rgba(255,255,255,.03);border-radius:var(--radius2);overflow:hidden;display:flex;flex-direction:column}
.productThumb{aspect-ratio:16/10;background:rgba(255,255,255,.04);display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:40px;font-weight:900;padding:0;overflow:hidden}
.productThumb img{width:100%;height:100%;object-fit:contain;object-position:center;background:#0d204f;display:block}
.productBody{padding:18px;display:flex;flex-direction:column;gap:10px;flex:1}
.stackList{display:grid;gap:12px}
.alert{margin-top:14px;padding:12px 14px;border-radius:14px;border:1px solid var(--line)}
.alert-success{background:rgba(34,197,94,.10);border-color:rgba(34,197,94,.35);color:#d1fae5}
.alert-error{background:rgba(239,68,68,.10);border-color:rgba(239,68,68,.35);color:#fee2e2}
.flashWrap{padding-top:12px}
.authShell{max-width:560px;margin:0 auto}
.authCard{margin-top:28px}
.formSingle{display:grid;gap:12px;margin-top:14px}
.accountGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (max-width:860px){.accountGrid{grid-template-columns:1fr}}
.listStack{display:grid;gap:10px}
.listItem{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:14px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.03)}
.miniText{font-size:12px;color:var(--muted)}
.metric{font-size:34px;font-weight:900;margin:0}
.tableWrap{overflow:auto}
.table{width:100%;border-collapse:collapse;min-width:720px}
.table th,.table td{padding:12px;border-bottom:1px solid var(--line);text-align:left;font-size:14px}
.tableActions{display:flex;gap:8px;flex-wrap:wrap}
.tableActions form{display:inline}
.tableActions a,.tableActions button{background:rgba(255,255,255,.04);color:var(--text);border:1px solid var(--line);padding:8px 10px;border-radius:12px;text-decoration:none;cursor:pointer}
.productHero{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
@media (max-width:900px){.productHero{grid-template-columns:1fr}}
.galleryGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
@media (max-width:780px){.galleryGrid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.galleryGrid{grid-template-columns:1fr}}
.galleryItem{border-radius:18px;overflow:hidden;border:1px solid var(--line);background:rgba(255,255,255,.03);aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;padding:12px}
.galleryItem img{width:100%;height:100%;object-fit:contain;object-position:center}
.videoFrame{position:relative;padding-top:56.25%;overflow:hidden;border-radius:18px;border:1px solid var(--line)}
.videoFrame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.contentText{line-height:1.8;color:var(--muted)}
.footerGrid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
@media (max-width:760px){.footerGrid{grid-template-columns:1fr}}
.footerTitle{font-weight:700;color:var(--text);margin-bottom:8px}
.formAdmin{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:860px){.formAdmin{grid-template-columns:1fr}}
.checkRow{align-self:end}
.fileGrid{display:grid;gap:10px;margin-top:10px}
.fileRow{display:grid;grid-template-columns:2fr 1fr 2fr auto;gap:10px}
@media (max-width:860px){.fileRow{grid-template-columns:1fr}}
.miniCheck{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted)}


/* ===== Header AutomBot v4 ===== */
body{overflow-x:hidden}
.abDesktopOnly{display:block}
.abMobileOnly{display:none}

.abHeader{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(12px);
  background:rgba(11,18,32,.78);
  border-bottom:1px solid var(--line);
}

.abHeaderTop{
  min-height:78px;
  display:grid;
  grid-template-columns:minmax(220px,1fr) auto minmax(220px,1fr);
  align-items:center;
  gap:16px;
  padding-top:10px;
  padding-bottom:10px;
}

.abBrand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:0;
}
.abLogo{
  width:40px;
  height:40px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(245,158,11,.95), rgba(96,165,250,.85));
  display:grid;
  place-items:center;
  font-weight:900;
  color:#061022;
  flex:0 0 auto;
}
.abBrandText{display:flex;flex-direction:column;line-height:1.1;min-width:0}
.abBrandName{font-weight:900;font-size:14px;color:var(--text)}
.abBrandTag{font-size:12px;color:var(--muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.abHeaderCenter{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:0}
.abMainNav{display:flex;justify-content:center;align-items:center;gap:10px;flex-wrap:wrap}
.abMainLink{
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  text-decoration:none;
  color:var(--muted);
  background:rgba(255,255,255,.04);
  transition:.15s ease;
  white-space:nowrap;
  font-size:13px;
  font-weight:700;
}
.abMainLink:hover{transform:translateY(-1px);color:var(--text);border-color:rgba(245,158,11,.35)}
.abMainLink.is-active{border-color:rgba(245,158,11,.45);color:var(--text);background:rgba(245,158,11,.08)}

.abSubNav{margin-top:8px;display:flex;justify-content:center;gap:12px;flex-wrap:wrap;font-size:13px}
.abSubNav a{color:var(--muted);text-decoration:none}
.abSubNav a:hover{color:var(--text)}

.abHeaderActions{display:flex;justify-content:flex-end;align-items:center;gap:10px;flex-wrap:wrap}
.abPrimaryCta{padding:10px 16px;font-size:14px}

.abMenuToggle{
  width:46px;height:46px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);padding:0;display:none;align-items:center;justify-content:center;
  flex-direction:column;gap:5px;cursor:pointer;
}
.abMenuToggle span{display:block;width:18px;height:2px;background:var(--text);border-radius:2px;transition:.2s ease}
.abMenuToggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.abMenuToggle.is-open span:nth-child(2){opacity:0}
.abMenuToggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.abMobileQuickNav{display:none;padding-bottom:10px}
.abMainNavMobile{justify-content:flex-start;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.abMainNavMobile::-webkit-scrollbar{display:none}

.abMobileMenu{display:none;border-top:1px solid var(--line);background:rgba(7,12,22,.96)}
.abMobileMenu.is-open{display:block}
.abMobileMenuInner{padding-top:12px;padding-bottom:14px}
.abMobileActions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.abMobileLinks{display:flex;gap:10px 12px;flex-wrap:wrap}
.abMobileLinks a{color:var(--muted);text-decoration:none;font-size:13px}
.abMobileLinks a:hover{color:var(--text)}

@media (max-width: 980px){
  .abHeaderTop{grid-template-columns:minmax(0,1fr) auto;gap:12px;min-height:74px}
  .abDesktopOnly{display:none !important}
  .abMobileOnly{display:block}
  .abMenuToggle{display:flex}
  .abMobileQuickNav{display:block}
  .abBrand{min-width:0}
  .abBrandTag{display:none}
}

@media (max-width: 640px){
  .abHeaderTop{padding-top:8px;padding-bottom:8px;min-height:68px}
  .abMainNavMobile{gap:8px}
  .abMainLink{padding:8px 12px;font-size:12px}
  .abMobileActions{display:grid;grid-template-columns:1fr;gap:8px}
  .abMobileActions .btn{width:100%}
  .abMobileLinks{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
}

/* ===== CORREÇÃO HEADER MOBILE ===== */

/* reduz altura */
.abHeaderTop {
  padding: 10px 16px !important;
  min-height: 70px !important;
}

/* remove crescimento */
.abMobileQuickNav {
  display: none !important;
}

/* menu vira overlay (não empurra layout) */
.abMobileMenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #071326;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: none;
  z-index: 999;
}

/* menu aberto */
.abMobileMenu.is-open {
  display: block;
}

/* conteúdo interno mais compacto */
.abMobileMenuInner {
  padding: 16px;
}

/* botões menores */
.abMobileActions .btn {
  min-height: 48px;
  font-size: 14px;
}

/* evita header gigante */
.abHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== Galeria horizontal + lightbox ===== */
.galleryHead{display:flex;justify-content:space-between;align-items:end;gap:12px;flex-wrap:wrap;margin-bottom:16px}
.galleryRail{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding:4px 2px 10px;
  scrollbar-width:thin;
}
.galleryRail::-webkit-scrollbar{height:8px}
.galleryRail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14);border-radius:999px}
.galleryCard{
  flex:0 0 min(86vw, 520px);
  width:min(86vw, 520px);
  min-height:240px;
  padding:0;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  cursor:pointer;
  scroll-snap-align:start;
}
.galleryCardMedia{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  aspect-ratio:16/10;
  background:#050910;
}
.galleryCard img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.galleryLightbox{
  position:fixed;
  inset:0;
  background:rgba(3,6,12,.94);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  z-index:3000;
}
.galleryLightbox.is-open{display:flex}
.galleryLightboxStage{
  width:min(100%, 1100px);
  height:min(100vh - 80px, 900px);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.galleryLightboxStage img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:20px;
  box-shadow:0 24px 80px rgba(0,0,0,.45);
}
.galleryLightboxClose,
.galleryLightboxNav{
  position:absolute;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(8,14,24,.78);
  color:#fff;
  cursor:pointer;
  z-index:2;
}
.galleryLightboxClose{
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border-radius:16px;
  font-size:28px;
  line-height:1;
}
.galleryLightboxNav{
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;
  font-size:34px;
  line-height:1;
}
.galleryLightboxNav.prev{left:18px}
.galleryLightboxNav.next{right:18px}
.galleryLightboxCounter{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(8,14,24,.8);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  font-size:13px;
  font-weight:700;
}
body.lightbox-open{overflow:hidden}
@media (max-width: 640px){
  .galleryCard{flex-basis:88vw;width:88vw;border-radius:24px}
  .galleryLightbox{padding:14px}
  .galleryLightboxStage{height:min(100vh - 40px, 900px)}
  .galleryLightboxClose{top:10px;right:10px;width:44px;height:44px}
  .galleryLightboxNav{width:44px;height:44px;font-size:28px}
  .galleryLightboxNav.prev{left:10px}
  .galleryLightboxNav.next{right:10px}
}


.statusBanner{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(245,158,11,.35);
  background:rgba(245,158,11,.10);
  color:#ffedd5;
  font-weight:800;
}

.tableDownloadLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:108px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(245,158,11,.35);
  background:rgba(245,158,11,.12);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}

@media (max-width: 760px){
  .tableWrap{overflow:visible}
  .productFilesTable,
  .productFilesTable thead,
  .productFilesTable tbody,
  .productFilesTable tr,
  .productFilesTable th,
  .productFilesTable td{
    display:block;
    width:100%;
  }

  .productFilesTable{
    min-width:0;
  }

  .productFilesTable thead{
    display:none;
  }

  .productFilesTable tbody{
    display:grid;
    gap:12px;
  }

  .productFilesTable tr{
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    background:rgba(255,255,255,.03);
  }

  .productFilesTable td{
    border-bottom:none;
    padding:0;
  }

  .productFilesTable td + td{
    margin-top:10px;
  }

  .productFilesTable td::before{
    content: attr(data-label);
    display:block;
    margin-bottom:4px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
  }

  .productFilesTable td:last-child{
    margin-top:14px;
  }

  .productFilesTable td:last-child .tableDownloadLink{
    width:100%;
  }
}

/* ===== Programa de testadores beta ===== */
.statusBanner{margin-top:16px;padding:14px 16px;border-radius:16px;border:1px solid rgba(245,158,11,.35);background:rgba(245,158,11,.10);color:#ffedd5;font-weight:700}
.betaInfoBox{margin-top:16px;padding:16px;border:1px solid rgba(96,165,250,.28);background:rgba(96,165,250,.08);border-radius:18px}
.compactStack .listItem{padding:12px 14px}
.cardSubsection{background:rgba(255,255,255,.02)}
.checkStack{display:grid;gap:10px}
.tableDownloadLink{display:inline-flex;align-items:center;justify-content:center;padding:9px 12px;border-radius:12px;border:1px solid rgba(245,158,11,.35);text-decoration:none;color:var(--text);background:rgba(255,255,255,.04)}
.betaLandingGrid,.betaTopGrid,.betaContentGrid,.adminTesterGrid{align-items:start}
.betaFeedbackList{gap:14px}
.betaFeedbackItem{padding:16px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.betaFeedbackMeta{margin-bottom:10px}
.betaImageLink{display:block;margin-top:12px;border-radius:16px;overflow:hidden;border:1px solid var(--line)}
.betaImageLink img{width:100%;height:auto;display:block}
.betaChatList{display:grid;gap:12px;max-height:780px;overflow:auto;padding-right:4px}
.betaChatItem{padding:14px;border-radius:16px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.betaChatHeader{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-bottom:8px}
@media (max-width:760px){.betaChatHeader{flex-direction:column}}

