:root{
  --bg0:#030812;
  --bg1:#061a2c;
  --panel:rgba(10, 18, 30, 0.58);
  --panelSolid:#0b1726;
  --stroke:rgba(255,255,255,.10);
  --strokeSoft:rgba(255,255,255,.06);
  --aqua0:#34f3ff;
  --aqua1:#b6fbff;
  --teal0:#29f0b4;
  --teal1:#baffea;
  --violet0:#7b5cff;
  --glow:rgba(52, 243, 255, 0.18);
  --text:#f6fbff;
  --muted:rgba(246, 251, 255, 0.70);
  --shadow:0 18px 55px rgba(0,0,0,.52);
  --radius:18px;
  --radiusSm:12px;
  --container:1120px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html, body{
  height:100%;
}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1400px 900px at 18% -10%, rgba(52,243,255,.16) 0%, rgba(52,243,255,0) 60%),
    radial-gradient(1200px 760px at 88% 0%, rgba(123,92,255,.14) 0%, rgba(123,92,255,0) 62%),
    radial-gradient(900px 900px at 50% 120%, rgba(41,240,180,.10) 0%, rgba(41,240,180,0) 62%),
    linear-gradient(180deg, #020611 0%, #061a2c 55%, #020611 100%);
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:-30%;
  z-index:-2;
  pointer-events:none;
  background:
    conic-gradient(from 220deg at 60% 40%,
      rgba(52,243,255,0) 0deg,
      rgba(52,243,255,.10) 35deg,
      rgba(123,92,255,.10) 70deg,
      rgba(52,243,255,0) 120deg,
      rgba(41,240,180,.08) 165deg,
      rgba(52,243,255,0) 230deg,
      rgba(123,92,255,.08) 290deg,
      rgba(52,243,255,0) 360deg),
    repeating-linear-gradient(135deg,
      rgba(52,243,255,.04) 0px,
      rgba(52,243,255,.04) 1px,
      rgba(0,0,0,0) 8px,
      rgba(0,0,0,0) 18px);
  filter:blur(18px);
  opacity:.55;
  animation:goldSweep 18s linear infinite;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(6,6,8,.84), rgba(6,6,8,.30) 32%, rgba(6,6,8,.86)),
    radial-gradient(900px 520px at 50% 34%, rgba(52,243,255,.08), rgba(52,243,255,0) 65%),
    radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,.10) 0, rgba(255,255,255,0) 2px);
  background-size:auto, auto, 22px 22px;
  mix-blend-mode:normal;
  opacity:.95;
  z-index:-1;
}

a{
  color:inherit;
}

.inlineLink{
  color:var(--aqua1);
  text-decoration:none;
  border-bottom:1px solid rgba(52,243,255,.22);
}

.inlineLink:hover{
  border-bottom-color:rgba(52,243,255,.42);
}

nav{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(var(--container), 92vw);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  background:rgba(14, 15, 20, 0.58);
  border:1px solid var(--stroke);
  border-radius:999px;
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:var(--shadow);
  z-index:1000;
}

nav::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(41,240,180,.20), rgba(52,243,255,.34), rgba(123,92,255,.16));
  opacity:.45;
  filter:blur(12px);
  z-index:-1;
}

.brand{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  text-decoration:none;
  background:linear-gradient(135deg, var(--aqua1), var(--aqua0) 45%, var(--violet0));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 18px rgba(52,243,255,.14);
}

.nav-links{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
}

.nav-links a{
  text-decoration:none;
  color:rgba(245,247,255,.86);
  font-weight:650;
  font-size:14px;
  letter-spacing:.2px;
  opacity:.90;
  transition:opacity .2s ease, color .2s ease;
}

.nav-links a:hover{
  opacity:1;
  color:var(--aqua1);
}

.nav-buttons{
  display:flex;
  gap:10px;
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  font-weight:750;
  font-size:14px;
  letter-spacing:.2px;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
  user-select:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  overflow:hidden;
  will-change:transform;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 70%);
  transform:translateX(-120%);
  transition:transform .55s ease;
  pointer-events:none;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn:hover::after{
  transform:translateX(120%);
}

.btn:active{
  transform:translateY(0);
}

.btn-outline{
  background:rgba(52,243,255,0.05);
  color:var(--aqua1);
  border-color:rgba(52,243,255,.28);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}

.btn-outline:hover{
  border-color:rgba(52,243,255,.45);
  box-shadow:0 16px 40px rgba(0,0,0,.35), 0 0 0 6px rgba(52,243,255,.08);
}

.btn-gold{
  color:#03101a;
  background:linear-gradient(135deg, var(--aqua1), var(--aqua0) 42%, var(--teal0));
  border-color:rgba(182,251,255,.26);
  box-shadow:0 20px 55px rgba(52,243,255,.12), 0 10px 30px rgba(0,0,0,.38);
}

.btn-gold:hover{
  box-shadow:0 24px 70px rgba(52,243,255,.16), 0 18px 55px rgba(0,0,0,.46);
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 20px 100px;
  isolation:isolate;
}

.hero::before{
  content:"ATLANTEAN";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:clamp(72px, 12vw, 190px);
  font-weight:900;
  letter-spacing:clamp(6px, 1.9vw, 22px);
  color:rgba(52, 243, 255, 0.06);
  filter:blur(.2px);
  z-index:-1;
  white-space:nowrap;
  user-select:none;
  pointer-events:none;
}

.hero-badge{
  background:rgba(18, 19, 25, 0.48);
  border:1px solid var(--strokeSoft);
  padding:10px 14px;
  border-radius:999px;
  color:rgba(182,251,255,.92);
  font-size:13px;
  font-weight:700;
  letter-spacing:.2px;
  margin-bottom:22px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
  animation:rise .75s ease both;
}

.hero h1{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:clamp(44px, 6.2vw, 84px);
  font-weight:900;
  letter-spacing:3px;
  line-height:1.02;
  margin:0 0 14px 0;
  animation:rise .85s ease both;
  animation-delay:.05s;
}

.hero-subtitle{
  margin:0 0 18px 0;
  font-size:clamp(22px, 2.9vw, 40px);
  font-weight:800;
  line-height:1.18;
  letter-spacing:.3px;
  opacity:.98;
  animation:rise .95s ease both;
  animation-delay:.12s;
}

.text-gradient{
  background:linear-gradient(90deg, var(--aqua1), var(--aqua0), rgba(255,255,255,.92));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero p{
  font-size:16px;
  color:var(--muted);
  max-width:660px;
  margin:0 0 30px 0;
  line-height:1.65;
  animation:rise 1.05s ease both;
  animation-delay:.20s;
}

.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  animation:rise 1.15s ease both;
  animation-delay:.26s;
}

.hero-buttons .btn{
  padding:12px 18px;
  font-size:14px;
}

.features{
  padding:80px 5% 100px;
}

.section-header{
  text-align:center;
  margin:0 auto 50px;
  max-width:820px;
}

.section-header h2{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:clamp(28px, 3.6vw, 46px);
  letter-spacing:.8px;
  margin:0 0 12px 0;
}

.section-header p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.f-card{
  border-radius:22px;
  border:1px solid rgba(238,240,255,0.10);
  background:rgba(255,255,255,0.03);
  padding:16px;
}
.f-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.f-ico{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(109,91,255,0.22), rgba(0,231,183,0.16));
  border:1px solid rgba(238,240,255,0.10);
}
.f-title{font-weight:900;letter-spacing:-0.02em}
.f-desc{color:var(--muted);line-height:1.75}
.f-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.feature-card{
  position:relative;
  background:rgba(16, 17, 23, 0.55);
  border:1px solid var(--strokeSoft);
  padding:28px 22px;
  border-radius:var(--radius);
  box-shadow:0 18px 45px rgba(0,0,0,.32);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 18% 10%, rgba(182,251,255,.12), rgba(182,251,255,0) 62%),
    radial-gradient(420px 260px at 82% 0%, rgba(52,243,255,.14), rgba(52,243,255,0) 58%);
  opacity:.55;
  pointer-events:none;
}

.feature-card:hover{
  transform:translateY(-6px);
  border-color:rgba(52,243,255,.22);
  box-shadow:0 26px 70px rgba(0,0,0,.45), 0 0 0 6px rgba(52,243,255,.06);
}

.feature-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(182,251,255,.10), rgba(52,243,255,.12));
  border:1px solid rgba(255,255,255,.08);
  color:rgba(182,251,255,.95);
  margin-bottom:16px;
}

.feature-icon span{
  font-size:30px;
}

.feature-card h3{
  margin:0 0 10px 0;
  font-size:18px;
  letter-spacing:.2px;
}

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

footer{
  text-align:center;
  padding:34px 20px;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(245,247,255,.62);
  font-size:13px;
}

.page-header{
  padding:120px 20px 30px;
  text-align:center;
  max-width:min(980px, 92vw);
  margin:0 auto;
}

.page-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(16,17,23,.32);
  color:rgba(182,251,255,.92);
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:14px;
}

.page-header h1{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:clamp(36px, 5.4vw, 70px);
  margin:0 0 10px 0;
  letter-spacing:.6px;
}

.page-lede{
  margin:0;
  color:rgba(245,247,255,.70);
  line-height:1.6;
}

.page-body{
  padding:0 0 90px;
}

.announce{
  max-width:min(var(--container), 92vw);
  margin:0 auto 14px;
  padding:0;
}

.announce-inner{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(16,17,23,.42);
  box-shadow:0 18px 55px rgba(0,0,0,.22);
}

.announce[data-tone="gold"] .announce-inner{
  border-color:rgba(182,251,255,.18);
  background:rgba(52,243,255,.06);
}

.announce-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(182,251,255,.85);
  box-shadow:0 0 0 6px rgba(52,243,255,.10);
}

.announce-text{
  color:rgba(245,247,255,.80);
  line-height:1.5;
  font-weight:700;
  flex:1 1 420px;
}

.announce-actions{
  margin-left:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

@media (max-width: 720px){
  .announce-actions{
    margin-left:0;
    width:100%;
  }
}

.links-grid{
  max-width:min(1200px, 94vw);
  margin:0 auto 18px;
  padding:0 20px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.dash-header{
  padding-bottom:18px;
}

.dash-headrow{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.dash-headright{
  display:flex;
  gap:10px;
  align-items:center;
}

.editor{
  position:fixed;
  inset:0;
  z-index:2500;
}

.editor-backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:rgba(5,5,7,.72);
}

.editor-panel{
  position:absolute;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(720px, 94vw);
  height:calc(100% - 36px);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(16,17,23,.78);
  backdrop-filter:blur(16px) saturate(140%);
  box-shadow:0 28px 90px rgba(0,0,0,.60);
  overflow:hidden;
}

.editor-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.editor-title{
  font-family:"Unbounded", system-ui, sans-serif;
  letter-spacing:.4px;
}

.editor-close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.45);
  color:rgba(245,247,255,.78);
  cursor:pointer;
}

.editor-close:hover{
  border-color:rgba(52,243,255,.18);
  background:rgba(52,243,255,.06);
}

.editor-body{
  padding:14px 16px 16px;
  overflow:auto;
  height:calc(100% - 70px);
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}

.field-row{
  flex-direction:row;
  align-items:center;
}

.field-label{
  font-weight:900;
  color:rgba(245,247,255,.78);
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.field-input{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.45);
  color:rgba(245,247,255,.82);
  outline:none;
}

.field-input:focus{
  border-color:rgba(52,243,255,.22);
  box-shadow:0 0 0 6px rgba(52,243,255,.08);
}

.field-area{
  resize:vertical;
  min-height:44px;
}

.divider{
  height:1px;
  background:rgba(255,255,255,.06);
  margin:12px 0;
}

.links-edit{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:10px 0 12px;
}

.link-row{
  display:grid;
  grid-template-columns:1fr 1.3fr 120px 120px;
  gap:10px;
}

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

.editor-actions .btn{
  flex:1;
  min-width:160px;
}

.editor-hint{
  margin-top:10px;
  color:rgba(245,247,255,.66);
  line-height:1.5;
  font-size:13px;
}

@media (max-width: 820px){
  .link-row{
    grid-template-columns:1fr;
  }
}

.kpi-grid{
  max-width:min(1200px, 94vw);
  margin:0 auto 18px;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:12px;
}

.kpi-card{
  background:rgba(16,17,23,.55);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:0 18px 55px rgba(0,0,0,.30);
  padding:16px 16px;
}

.kpi-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.kpi-label{
  font-weight:900;
  color:rgba(245,247,255,.74);
  letter-spacing:.3px;
}

.kpi-value{
  font-family:"Unbounded", system-ui, sans-serif;
  font-weight:900;
  font-size:28px;
  letter-spacing:.2px;
}

.kpi-unit{
  font-family:"Plus Jakarta Sans", system-ui, sans-serif;
  font-weight:900;
  margin-left:8px;
  color:rgba(245,247,255,.64);
  font-size:14px;
}

.kpi-sub{
  margin-top:6px;
  color:rgba(245,247,255,.62);
  font-size:13px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  font-size:10px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:900;
  white-space:nowrap;
}

.pill-soft{
  background:rgba(255,255,255,.06);
  color:rgba(245,247,255,.74);
}

.pill-ok{
  background:rgba(52,243,255,.10);
  border-color:rgba(182,251,255,.16);
  color:rgba(182,251,255,.92);
}

.pill-warn{
  background:rgba(255,255,255,.06);
  color:rgba(245,247,255,.74);
}

.pill-bad{
  background:rgba(123,92,255,.08);
  border-color:rgba(123,92,255,.22);
  color:rgba(220,214,255,.92);
}

.panel{
  max-width:min(1200px, 94vw);
  margin:0 auto;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(16,17,23,.42);
  box-shadow:0 18px 55px rgba(0,0,0,.28);
}

.panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.panel-title{
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:18px;
  letter-spacing:.4px;
}

.panel-btn{
  padding:10px 14px;
}

.status-log{
  margin:0;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.45);
  overflow:auto;
  color:rgba(245,247,255,.78);
  font-size:12px;
  line-height:1.5;
}

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:rgba(245,247,255,.70);
  font-size:14px;
  line-height:1.5;
}

.list li{
  padding-left:18px;
  position:relative;
}

.list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(52,243,255,.60);
  box-shadow:0 0 0 4px rgba(52,243,255,.08);
}

.support-grid{
  max-width:min(1200px, 94vw);
  margin:0 auto 18px;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:12px;
}

.support-card{
  background:rgba(16,17,23,.55);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:0 18px 55px rgba(0,0,0,.30);
  padding:18px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.support-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(182,251,255,.10), rgba(52,243,255,.12));
  border:1px solid rgba(255,255,255,.08);
  color:rgba(182,251,255,.95);
}

.support-title{
  font-family:"Unbounded", system-ui, sans-serif;
  font-weight:900;
}

.support-desc{
  color:rgba(245,247,255,.70);
  line-height:1.6;
  font-size:14px;
}

.faq details{
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 2px;
}

.faq details:first-child{
  border-top:0;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
  color:rgba(245,247,255,.84);
}

.faq-body{
  margin-top:10px;
  color:rgba(245,247,255,.70);
  line-height:1.6;
  font-size:14px;
}

.docs-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:14px;
  padding:16px;
}

.docs-toc{
  position:sticky;
  top:96px;
  align-self:start;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.35);
}

.toc-item{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  color:rgba(245,247,255,.74);
  font-weight:800;
  font-size:13px;
  border:1px solid transparent;
}

.toc-item:hover{
  background:rgba(52,243,255,.08);
  border-color:rgba(182,251,255,.14);
  color:rgba(182,251,255,.92);
}

.docs-content{
  min-width:0;
}

.doc-section{
  padding:6px 4px 14px;
  border-top:1px solid rgba(255,255,255,.06);
}

.doc-section:first-child{
  border-top:0;
}

.doc-section h2{
  margin:0 0 10px 0;
  font-family:"Unbounded", system-ui, sans-serif;
  font-size:22px;
  letter-spacing:.3px;
}

.doc-section p{
  margin:0 0 10px 0;
  color:rgba(245,247,255,.74);
  line-height:1.65;
}

.code{
  margin:10px 0;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.55);
  overflow:auto;
}

.code code{
  font-family:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  color:rgba(245,247,255,.80);
}

.callout{
  margin:10px 0;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(182,251,255,.18);
  background:rgba(52,243,255,.06);
  color:rgba(182,251,255,.92);
  line-height:1.6;
  font-size:14px;
}

.doc-details{
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 2px;
}

.doc-details:first-child{
  border-top:0;
}

.doc-details summary{
  cursor:pointer;
  font-weight:900;
  color:rgba(245,247,255,.84);
}

.doc-details .details-body{
  margin-top:10px;
  color:rgba(245,247,255,.70);
  line-height:1.6;
  font-size:14px;
}

.dash-panel .panel-head{
  align-items:flex-start;
}

.dash-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.chart-wrap{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(7,7,10,.35);
  overflow:hidden;
}

.chart{
  width:100%;
  height:320px;
  display:block;
}

.chart-legend{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(245,247,255,.70);
  font-size:13px;
}

.legend-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.swatch{
  width:12px;
  height:12px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.10);
}

.swatch-gold{
  background:linear-gradient(135deg, rgba(182,251,255,0.90), rgba(52,243,255,0.95));
}

@media (max-width: 920px){
  .docs-layout{
    grid-template-columns:1fr;
  }
  .docs-toc{
    position:relative;
    top:auto;
  }
}

@keyframes rise{
  from{
    opacity:0;
    transform:translateY(10px);
    filter:blur(2px);
  }
  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

@keyframes goldSweep{
  from{
    transform:translate3d(-2%, -1%, 0) rotate(0deg);
  }
  to{
    transform:translate3d(2%, 1%, 0) rotate(360deg);
  }
}

@media (max-width: 768px){
  .nav-links{
    display:none;
  }
  nav{
    padding:12px 14px;
  }
  .hero{
    padding-top:120px;
  }
}

@media (prefers-reduced-motion: reduce){
  body::before{
    animation:none !important;
  }
  .hero-badge,
  .hero h1,
  .hero-subtitle,
  .hero p,
  .hero-buttons{
    animation:none !important;
  }
  .btn,
  .feature-card,
  .command-card,
  .category-btn{
    transition:none !important;
  }
  .btn::after{
    display:none;
  }
}
